1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-05 20:58:40 +03:00

If it's a pstring, use pstrcpy().

This commit is contained in:
Andrew Bartlett -
parent aa486355e2
commit 34fb5f0b1a

View File

@ -266,7 +266,7 @@ static BOOL resolve_dfs_path(char* dfspath, struct dfs_path* dp,
if (consumedcntp) {
char *q;
pstring buf;
safe_strcpy(buf, dfspath, sizeof(buf));
pstrcpy(buf, dfspath);
trim_string(buf, NULL, "\\");
q = strrchr(buf, '\\');
if (q)
@ -633,7 +633,7 @@ int setup_dfs_referral(char* pathname, int max_referral_level, char** ppdata)
&& pathnamep[1] == '\\')
pathnamep++;
safe_strcpy(buf, pathnamep, sizeof(buf));
pstrcpy(buf, pathnamep);
if (!get_referred_path(buf, &junction, &consumedcnt,
&self_referral))
return -1;