From 25497a3818eadf0ff09a444ec268908263b74892 Mon Sep 17 00:00:00 2001 From: Tanaka Akira Date: Wed, 29 Sep 1999 23:24:04 +0000 Subject: revert-8084 --- Src/builtin.c | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) (limited to 'Src/builtin.c') diff --git a/Src/builtin.c b/Src/builtin.c index e159c1e85..ae608cc39 100644 --- a/Src/builtin.c +++ b/Src/builtin.c @@ -572,28 +572,8 @@ bin_pwd(char *name, char **argv, char *ops, int func) if (ops['r'] || ops['P'] || (isset(CHASELINKS) && !ops['L'])) printf("%s\n", zgetcwd()); else { - struct stat stdot, stpwd; - char *tmppwd; - /* - * We could print nothing and return status 1 if we can't - * stat ., but that's incompatible with both ksh and what - * we used to do. - */ - if (stat(".", &stdot) < 0 || - stat(pwd, &stpwd) >= 0 && stpwd.st_ino == stdot.st_ino) { - zputs(pwd, stdout); - putchar('\n'); - } else { - /* - * The directory has changed without us noticing it. We - * need to change pwd, since directory changing commands - * are liable to fail otherwise. - */ - zsfree(pwd); - printf("%s\n", tmppwd = zgetcwd()); - pwd = metafy(tmppwd, -1, META_DUP); - set_pwd_env(); - } + zputs(pwd, stdout); + putchar('\n'); } return 0; } -- cgit 1.4.1