From 557a50bea8f1bac855c94921d983966806b69120 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Thu, 20 Jan 2000 00:20:15 +0000 Subject: getcwd() does not stuff an error string in buf on error, call strerror() instead. --- usr.sbin/mtree/mtree.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.sbin/mtree/mtree.c') 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(); -- cgit v1.2.3