summaryrefslogtreecommitdiffstats
path: root/bin/realpath/realpath.c
diff options
context:
space:
mode:
Diffstat (limited to 'bin/realpath/realpath.c')
-rw-r--r--bin/realpath/realpath.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/bin/realpath/realpath.c b/bin/realpath/realpath.c
index c526733..8b7177f 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);
}
OpenPOWER on IntegriCloud