diff options
Diffstat (limited to 'bin/sh/cd.c')
-rw-r--r-- | bin/sh/cd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/sh/cd.c b/bin/sh/cd.c index caf8972..56439ac 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))); } |