diff options
author | Jeremy Allison <jra@samba.org> | 2003-11-05 00:17:14 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-11-05 00:17:14 +0000 |
commit | 29413db303d30d28c2fb0cc6e6e963e725ad4101 (patch) | |
tree | 126259b4a5c8c5514e16320179ad8315e95095d5 /source/libsmb | |
parent | 154793981a1b2aea2703ef4da4764a322bf90ca0 (diff) | |
download | samba-29413db303d30d28c2fb0cc6e6e963e725ad4101.tar.gz samba-29413db303d30d28c2fb0cc6e6e963e725ad4101.tar.xz samba-29413db303d30d28c2fb0cc6e6e963e725ad4101.zip |
Fix coredump in cli_get_backup_list.
Jeremy.
Diffstat (limited to 'source/libsmb')
-rw-r--r-- | source/libsmb/clidgram.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/source/libsmb/clidgram.c b/source/libsmb/clidgram.c index 5ab6bef87b6..c4675f1938a 100644 --- a/source/libsmb/clidgram.c +++ b/source/libsmb/clidgram.c @@ -75,7 +75,7 @@ int cli_send_mailslot(int dgram_sock, BOOL unique, const char *mailslot, SSVAL(ptr,smb_vwv15,1); SSVAL(ptr,smb_vwv16,2); p2 = smb_buf(ptr); - pstrcpy(p2,mailslot); + fstrcpy(p2,mailslot); p2 = skip_string(p2,1); memcpy(p2,buf,len); @@ -135,7 +135,7 @@ static char cli_backup_list[1024]; int cli_get_backup_list(const char *myname, const char *send_to_name) { - char outbuf[15]; + pstring outbuf; char *p; struct in_addr sendto_ip, my_ip; int dgram_sock; @@ -262,6 +262,3 @@ int cli_get_backup_server(char *my_name, char *target, char *servername, int nam return True; } - - - |