1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

More pstring elimination.

Jeremy.
(This used to be commit c1f70793d6)
This commit is contained in:
Jeremy Allison 2007-12-04 16:35:24 -08:00
parent 3c219ce238
commit e262c41c61

View File

@ -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");