diff options
author | 2000-01-20 00:20:14 +0000 | |
---|---|---|
committer | 2000-01-20 00:20:14 +0000 | |
commit | 2fb6ae6f5a3ab63a0561597cd0fdcabb676789df (patch) | |
tree | 591fff1ba32afb7923d9fbb3df1a77f083d5cb36 | |
parent | do not NULL dereference if fd_nfiles < 3 (diff) | |
download | wireguard-openbsd-2fb6ae6f5a3ab63a0561597cd0fdcabb676789df.tar.xz wireguard-openbsd-2fb6ae6f5a3ab63a0561597cd0fdcabb676789df.zip |
getcwd() does not stuff an error string in buf on error, call strerror()
instead.
-rw-r--r-- | usr.sbin/mtree/mtree.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/mtree/mtree.c b/usr.sbin/mtree/mtree.c index 3c08f7f8681..4c083ffd258 100644 --- a/usr.sbin/mtree/mtree.c +++ b/usr.sbin/mtree/mtree.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mtree.c,v 1.10 1999/01/24 10:26:54 rohee Exp $ */ +/* $OpenBSD: mtree.c,v 1.11 2000/01/20 00:20:14 millert Exp $ */ /* $NetBSD: mtree.c,v 1.7 1996/09/05 23:29:22 thorpej Exp $ */ /*- @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)mtree.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$OpenBSD: mtree.c,v 1.10 1999/01/24 10:26:54 rohee Exp $"; +static char rcsid[] = "$OpenBSD: mtree.c,v 1.11 2000/01/20 00:20:14 millert Exp $"; #endif #endif /* not lint */ @@ -152,7 +152,7 @@ main(argc, argv) error("%s: %s", dir, strerror(errno)); if ((cflag || sflag) && !getcwd(fullpath, sizeof fullpath)) - error("%s", fullpath); + error("getcwd: %s", strerror(errno)); if (cflag) { cwalk(); |