diff options
Diffstat (limited to 'coreutils/pwd.c')
-rw-r--r-- | coreutils/pwd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/pwd.c b/coreutils/pwd.c index 9455975..bb3ad04 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) |