diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-01-11 12:04:14 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-01-11 12:04:14 +0000 |
commit | 73b0a2bdf8b667a5ad70bb4bcc08409e8c9ef7aa (patch) | |
tree | b5a056ba7516c5b4f5073b8a98338b82ff57afe2 /source3/utils | |
parent | 22d6569ed514bac025958d6cfdc99ec472a3f5cb (diff) | |
download | samba-73b0a2bdf8b667a5ad70bb4bcc08409e8c9ef7aa.tar.gz samba-73b0a2bdf8b667a5ad70bb4bcc08409e8c9ef7aa.tar.bz2 samba-73b0a2bdf8b667a5ad70bb4bcc08409e8c9ef7aa.zip |
Fix a number of client-side fstring/pstring mixups.
Andrew Bartlett
(This used to be commit fe1cc779d5ea77e87dbc0e2edf7c34a354fee6e0)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/nmblookup.c | 2 | ||||
-rw-r--r-- | source3/utils/smbcacls.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/source3/utils/nmblookup.c b/source3/utils/nmblookup.c index 017efc60ae..7e0ed4a203 100644 --- a/source3/utils/nmblookup.c +++ b/source3/utils/nmblookup.c @@ -210,7 +210,7 @@ int main(int argc,char *argv[]) { int opt; unsigned int lookup_type = 0x0; - pstring lookup; + fstring lookup; extern int optind; extern char *optarg; BOOL find_master=False; diff --git a/source3/utils/smbcacls.c b/source3/utils/smbcacls.c index e41edcf6f8..a5cee0dae1 100644 --- a/source3/utils/smbcacls.c +++ b/source3/utils/smbcacls.c @@ -718,7 +718,7 @@ static struct cli_state *connect_one(const char *share) if (!got_pass) { char *pass = getpass("Password: "); if (pass) { - pstrcpy(password, pass); + fstrcpy(password, pass); got_pass = True; } } @@ -806,7 +806,7 @@ You can string acls together with spaces, commas or newlines\n\ if ((p=strchr_m(username,'%'))) { *p = 0; - pstrcpy(password,p+1); + fstrcpy(password,p+1); got_pass = True; memset(strchr_m(getenv("USER"), '%') + 1, 'X', strlen(password)); @@ -820,7 +820,7 @@ You can string acls together with spaces, commas or newlines\n\ p = strchr_m(username,'%'); if (p) { *p = 0; - pstrcpy(password, p+1); + fstrcpy(password, p+1); got_pass = 1; } break; |