From 4fe9c5b65614d048c053989ab3d1e97b1bbcfa2b Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 6 Oct 1998 11:56:44 +0000 Subject: fixed a bug in time setting (utime() call) (This used to be commit 2f4506a33c7015f2a176929d794c6c40f1433591) --- source3/smbwrapper/smbw_dir.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'source3/smbwrapper/smbw_dir.c') diff --git a/source3/smbwrapper/smbw_dir.c b/source3/smbwrapper/smbw_dir.c index 5223183d56..a932c102dc 100644 --- a/source3/smbwrapper/smbw_dir.c +++ b/source3/smbwrapper/smbw_dir.c @@ -374,14 +374,13 @@ int smbw_chdir(const char *name) /* a special case - accept cd to /smb */ if (strncmp(cwd, smbw_prefix, len-1) == 0 && cwd[len-1] == 0) { - goto success; + goto success1; } if (strncmp(cwd,smbw_prefix,strlen(smbw_prefix))) { if (real_chdir(cwd) == 0) { - goto success; + goto success2; } - errno = ENOENT; goto failed; } @@ -405,7 +404,11 @@ int smbw_chdir(const char *name) goto failed; } - success: + success1: + /* we don't want the old directory to be busy */ + real_chdir("/"); + + success2: DEBUG(4,("set SMBW_CWD to %s\n", cwd)); @@ -414,9 +417,6 @@ int smbw_chdir(const char *name) DEBUG(4,("setenv failed\n")); } - /* we don't want the old directory to be busy */ - real_chdir("/"); - smbw_busy--; return 0; -- cgit