aboutsummaryrefslogtreecommitdiff
path: root/coreutils/pwd.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/pwd.c')
-rw-r--r--coreutils/pwd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/pwd.c b/coreutils/pwd.c
index 9455975e7..bb3ad04fc 100644
--- a/coreutils/pwd.c
+++ b/coreutils/pwd.c
@@ -43,7 +43,7 @@ static int logical_getcwd(void)
if (*p == '.')
p++; /* we found "/.." */
if (*p == '\0' || *p == '/')
- return 0; /* "/./" or "/../" component: bad */
+ return 0; /* "/./" or "/../" component: bad */
}
if (stat(wd, &st1) != 0)