diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-10-03 09:39:11 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-10-03 09:39:11 +0000 |
commit | cce5f09a90b5027bafd22f42edab9c256789bce1 (patch) | |
tree | 3347082ec53c1503b961e08852efedf29a65d41f /source3/smbwrapper/unlink.c | |
parent | 8a9fc22a6f0ea99312c3a86eff3ee1365d45a9f1 (diff) | |
download | samba-cce5f09a90b5027bafd22f42edab9c256789bce1.tar.gz samba-cce5f09a90b5027bafd22f42edab9c256789bce1.tar.bz2 samba-cce5f09a90b5027bafd22f42edab9c256789bce1.zip |
added unlink() and rename() support to smbwrapper
(This used to be commit b85d96144728e8a29c7c1114462e28bf3b144b80)
Diffstat (limited to 'source3/smbwrapper/unlink.c')
-rw-r--r-- | source3/smbwrapper/unlink.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/source3/smbwrapper/unlink.c b/source3/smbwrapper/unlink.c new file mode 100644 index 0000000000..827485c095 --- /dev/null +++ b/source3/smbwrapper/unlink.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 unlink(const char *name) +{ + if (smbw_path(name)) { + return smbw_unlink(name); + } + + return real_unlink(name); +} |