From 8df71a5a7d38e5c4210f75221243baf4d34014d9 Mon Sep 17 00:00:00 2001 From: Steve Price Date: Mon, 23 Dec 1996 22:29:03 +0000 Subject: [PATCH] Oops, it needs little more caulk to get it right. --- bin/sh/cd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/sh/cd.c b/bin/sh/cd.c index caf8972416e3..56439acdf6c0 100644 --- a/bin/sh/cd.c +++ b/bin/sh/cd.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cd.c,v 1.9 1996/12/23 05:31:48 steve Exp $ + * $Id: cd.c,v 1.10 1996/12/23 22:16:35 steve Exp $ */ #ifndef lint @@ -237,5 +237,5 @@ getpwd() { if (curdir) return (curdir); - return (getcwd(NULL, 0)); + return ((curdir = getcwd(NULL, 0))); }