summaryrefslogtreecommitdiff
path: root/source3/smbwrapper/rmdir.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-10-03 13:27:56 +0000
committerAndrew Tridgell <tridge@samba.org>1998-10-03 13:27:56 +0000
commitaa7aacacab413ec608fcc8ba2ba5d9cbeaa340d8 (patch)
tree710b33606986da75c40d2d3bf9369b7bc6920665 /source3/smbwrapper/rmdir.c
parent03a06267f4674201c107b85abf993688312c5093 (diff)
downloadsamba-aa7aacacab413ec608fcc8ba2ba5d9cbeaa340d8.tar.gz
samba-aa7aacacab413ec608fcc8ba2ba5d9cbeaa340d8.tar.bz2
samba-aa7aacacab413ec608fcc8ba2ba5d9cbeaa340d8.zip
added mkdir() and rmdir() support
(This used to be commit ce748e5ea94380147a01de8235b343c7e2852bee)
Diffstat (limited to 'source3/smbwrapper/rmdir.c')
-rw-r--r--source3/smbwrapper/rmdir.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/source3/smbwrapper/rmdir.c b/source3/smbwrapper/rmdir.c
new file mode 100644
index 0000000000..120b6eaf22
--- /dev/null
+++ b/source3/smbwrapper/rmdir.c
@@ -0,0 +1,31 @@
+/*
+ Unix SMB/Netbios implementation.
+ Version 2.0
+ SMB wrapper functions
+ Copyright (C) Andrew Tridgell 1998
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
+
+#include "wrapper.h"
+
+ int rmdir(const char *name)
+{
+ if (smbw_path(name)) {
+ return smbw_rmdir(name);
+ }
+
+ return real_rmdir(name);
+}