From 894fd2da788ecf13e14176f20d2781f4375f0b71 Mon Sep 17 00:00:00 2001 From: Johan Karlsson Date: Wed, 18 Dec 2002 11:50:28 +0000 Subject: Remove undocumented behavior (return current work dir if no path is given as argument) that is not present in 4-Stable. It was introduced when realpath(1) was split out of pwd(1). The removed behavior is provided by pwd(1). Reviewed by: mike --- bin/realpath/realpath.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'bin/realpath') diff --git a/bin/realpath/realpath.c b/bin/realpath/realpath.c index c526733e9000..8b7177f7dc48 100644 --- a/bin/realpath/realpath.c +++ b/bin/realpath/realpath.c @@ -49,10 +49,7 @@ main(int argc, char *argv[]) char buf[MAXPATHLEN]; char *p; - if (argc == 1) { - if ((p = getcwd(NULL, 0)) == NULL) - err(1, "getcwd()"); - } else if (argc == 2) { + if (argc == 2) { if ((p = realpath(argv[1], buf)) == NULL) err(1, "%s", buf); } else @@ -65,6 +62,6 @@ static void usage(void) { - (void)fprintf(stderr, "usage: realpath [path]\n"); + (void)fprintf(stderr, "usage: realpath path\n"); exit(1); } -- cgit v1.2.3