From e262c41c6119957c5e4b8d5752040881021175a3 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 4 Dec 2007 16:35:24 -0800 Subject: [PATCH] More pstring elimination. Jeremy. (This used to be commit c1f70793d615df57dc7b766d67db3e9eedd0e25e) --- source3/utils/net_rpc.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source3/utils/net_rpc.c b/source3/utils/net_rpc.c index e4b1872203b..b41142a087a 100644 --- a/source3/utils/net_rpc.c +++ b/source3/utils/net_rpc.c @@ -24,6 +24,7 @@ #include "utils/net.h" static int net_mode_share; +static bool sync_files(struct copy_clistate *cp_clistate, const char *mask); /** * @file net_rpc.c @@ -3588,7 +3589,7 @@ static void copy_fn(const char *mnt, file_info *f, const char *mask, void *state * * @return Boolean result **/ -bool sync_files(struct copy_clistate *cp_clistate, pstring mask) +static bool sync_files(struct copy_clistate *cp_clistate, const char *mask) { struct cli_state *targetcli; char *targetpath = NULL; @@ -3680,7 +3681,7 @@ static NTSTATUS rpc_share_migrate_files_internals(const DOM_SID *domain_sid, struct copy_clistate cp_clistate; bool got_src_share = False; bool got_dst_share = False; - pstring mask = "\\*"; + const char *mask = "\\*"; char *dst = NULL; dst = SMB_STRDUP(opt_destination?opt_destination:"127.0.0.1"); -- 2.11.4.GIT