diff options
author | Volker Lendecke <vlendec@samba.org> | 2005-06-25 09:07:42 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:58:02 -0500 |
commit | ad54e2f0c201e227ddb3caf9bb66abc968c6dbce (patch) | |
tree | a77151550d21537a1d17e20f24211d10484439af /source3/modules | |
parent | ff7e5c26733c933d0ed71616c39e2d931ad1e597 (diff) | |
download | samba-ad54e2f0c201e227ddb3caf9bb66abc968c6dbce.tar.gz |
r7902: Fix the build
(This used to be commit 6d431eb676e1df4cfdcbeaed5fa81adfbfc77325)
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_catia.c | 6 |
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)); |