realpath fix, do not dump; pr#2765, david@mono.org
authorderaadt <deraadt@openbsd.org>
Tue, 17 Sep 1996 19:31:18 +0000 (19:31 +0000)
committerderaadt <deraadt@openbsd.org>
Tue, 17 Sep 1996 19:31:18 +0000 (19:31 +0000)
sbin/fsck_msdos/dir.c

index 44010da..916e6fb 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: dir.c,v 1.3 1996/06/23 14:30:42 deraadt Exp $ */
+/*     $OpenBSD: dir.c,v 1.4 1996/09/17 19:31:18 deraadt Exp $ */
 /*     $NetBSD: dir.c,v 1.1.4.1 1996/05/31 18:41:38 jtc Exp $  */
 
 /*
@@ -37,7 +37,7 @@
 
 
 #ifndef lint
-static char rcsid[] = "$OpenBSD: dir.c,v 1.3 1996/06/23 14:30:42 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: dir.c,v 1.4 1996/09/17 19:31:18 deraadt Exp $";
 #endif /* not lint */
 
 #include <stdio.h>
@@ -168,7 +168,7 @@ fullpath(dir)
                memcpy(cp, np, nl);
                *--cp = '/';
        } while (dir = dir->parent);
-       if (dir->parent)
+       if (dir)
                *--cp = '?';
        return cp;
 }