From ef2e37cf945a3f95d4e7df8b3b915c864d4dc100 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 8 Oct 1998 01:23:33 +0000 Subject: fixed a problem with fchdir() that broke "cvs -d" in smbsh (This used to be commit 6121f7c8c2d63fd12266327a6f2ac9a5e717dccc) --- source3/smbwrapper/wrapped.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'source3/smbwrapper/wrapped.c') diff --git a/source3/smbwrapper/wrapped.c b/source3/smbwrapper/wrapped.c index 790d56c936..d5f47aac46 100644 --- a/source3/smbwrapper/wrapped.c +++ b/source3/smbwrapper/wrapped.c @@ -164,11 +164,7 @@ int fchdir(int fd) { - if (smbw_fd(fd)) { - return smbw_fchdir(fd); - } - - return real_fchdir(fd); + return smbw_fchdir(fd); } #ifdef HAVE___FCHDIR -- cgit