diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-12-04 21:29:30 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-12-04 21:29:30 +0000 |
commit | 62cc1d34821e8afd10698278359aadfc9dbb6b80 (patch) | |
tree | 0a24a4bebf81d308d5af83b9800d27077137f888 /sbin | |
parent | 3b6b1e8aed52466fed87e79c6525efccedc45ad3 (diff) |
fix
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/mount/mount.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c index 37a14d6ea66..efff55e9b1e 100644 --- a/sbin/mount/mount.c +++ b/sbin/mount/mount.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mount.c,v 1.8 1996/12/04 09:45:39 deraadt Exp $ */ +/* $OpenBSD: mount.c,v 1.9 1996/12/04 21:29:29 downsj Exp $ */ /* $NetBSD: mount.c,v 1.24 1995/11/18 03:34:29 cgd Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)mount.c 8.19 (Berkeley) 4/19/94"; #else -static char rcsid[] = "$OpenBSD: mount.c,v 1.8 1996/12/04 09:45:39 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: mount.c,v 1.9 1996/12/04 21:29:29 downsj Exp $"; #endif #endif /* not lint */ @@ -234,7 +234,7 @@ main(argc, argv) vfstype = "nfs"; else { char *labelfs = readlabelfs(argv[0]); - if (labelfs != "") + if (labelfs != NULL) vfstype = labelfs; } } |