summaryrefslogtreecommitdiffstats
path: root/source3/modules/vfs_catia.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2005-06-25 09:07:42 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:58:02 -0500
commitad54e2f0c201e227ddb3caf9bb66abc968c6dbce (patch)
treea77151550d21537a1d17e20f24211d10484439af /source3/modules/vfs_catia.c
parentff7e5c26733c933d0ed71616c39e2d931ad1e597 (diff)
downloadsamba-ad54e2f0c201e227ddb3caf9bb66abc968c6dbce.tar.gz
samba-ad54e2f0c201e227ddb3caf9bb66abc968c6dbce.tar.xz
samba-ad54e2f0c201e227ddb3caf9bb66abc968c6dbce.zip
r7902: Fix the build
(This used to be commit 6d431eb676e1df4cfdcbeaed5fa81adfbfc77325)
Diffstat (limited to 'source3/modules/vfs_catia.c')
-rw-r--r--source3/modules/vfs_catia.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/modules/vfs_catia.c b/source3/modules/vfs_catia.c
index 04d87c421f1..d4420884ddd 100644
--- a/source3/modules/vfs_catia.c
+++ b/source3/modules/vfs_catia.c
@@ -105,13 +105,13 @@ static int catia_open(vfs_handle_struct *handle, connection_struct *conn,
}
static int catia_rename(vfs_handle_struct *handle, connection_struct *conn,
- const char *old, const char *new)
+ const char *oldname, const char *newname)
{
pstring oname, nname;
- pstrcpy(oname, old);
+ pstrcpy(oname, oldname);
to_unix(oname);
- pstrcpy(nname, new);
+ pstrcpy(nname, newname);
to_unix(nname);
DEBUG(10, ("converted old name: %s\n", oname));