summaryrefslogtreecommitdiffstats
path: root/source/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
commitce748e5ea94380147a01de8235b343c7e2852bee (patch)
treeb5b0a35852918ce8676dc5011e72fa8732293a9e /source/smbwrapper/rmdir.c
parent5674fb4e9dc4d92213d763c8cecd26efc23a9720 (diff)
downloadsamba-ce748e5ea94380147a01de8235b343c7e2852bee.tar.gz
samba-ce748e5ea94380147a01de8235b343c7e2852bee.tar.xz
samba-ce748e5ea94380147a01de8235b343c7e2852bee.zip
added mkdir() and rmdir() support
Diffstat (limited to 'source/smbwrapper/rmdir.c')
-rw-r--r--source/smbwrapper/rmdir.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/source/smbwrapper/rmdir.c b/source/smbwrapper/rmdir.c
new file mode 100644
index 00000000000..120b6eaf228
--- /dev/null
+++ b/source/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);
+}