diff options
| author | Steve Price <steve@FreeBSD.org> | 1998-05-26 02:53:06 +0000 |
|---|---|---|
| committer | Steve Price <steve@FreeBSD.org> | 1998-05-26 02:53:06 +0000 |
| commit | 14d8151513f826eee5b9cc43da7d7c2c425c431b (patch) | |
| tree | 8218db51762147e50fdceb428ab8e921a2b0b8de | |
| parent | 29c98bc6243acf03ba99454dbbbbc4adbada0e7b (diff) | |
Notes
| -rw-r--r-- | lib/libc/gen/getvfsent.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/gen/getvfsent.3 b/lib/libc/gen/getvfsent.3 index e4536d1580d2..3cd7d0f8b40b 100644 --- a/lib/libc/gen/getvfsent.3 +++ b/lib/libc/gen/getvfsent.3 @@ -1,4 +1,4 @@ -.\" $Id: getvfsent.3,v 1.11 1998/03/23 13:02:37 bde Exp $ +.\" $Id: getvfsent.3,v 1.12 1998/05/25 21:42:51 steve Exp $ .\" Written by Garrett A. Wollman, September 1994. .\" This manual page is in the public domain. .\" @@ -141,8 +141,8 @@ int error; /* setup code here */ error = getvfsbyname("cd9660", &vfc); -if(error && vfsisloadable("cd9660")) { - if(vfsload("cd9660")) +if (error && vfsisloadable("cd9660")) { + if (vfsload("cd9660")) err(EX_OSERR, "vfsload(cd9660)"); endvfsent(); /* flush cache */ error = getvfsbyname("cd9660", &vfc); |
