From ad54e2f0c201e227ddb3caf9bb66abc968c6dbce Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 25 Jun 2005 09:07:42 +0000 Subject: r7902: Fix the build (This used to be commit 6d431eb676e1df4cfdcbeaed5fa81adfbfc77325) --- source3/modules/vfs_catia.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/modules/vfs_catia.c') 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)); -- cgit