diff options
author | Tim Potter <tpot@samba.org> | 1998-11-26 06:35:25 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 1998-11-26 06:35:25 +0000 |
commit | b70700dba2f82d64f85bea51841081b0e4b6f9e9 (patch) | |
tree | 421b58249121e6bc77e22acdc45668c54da6ce10 /source3 | |
parent | 6ff1453ee119fe1120883429319023a29a9e6707 (diff) | |
download | samba-b70700dba2f82d64f85bea51841081b0e4b6f9e9.tar.gz samba-b70700dba2f82d64f85bea51841081b0e4b6f9e9.tar.bz2 samba-b70700dba2f82d64f85bea51841081b0e4b6f9e9.zip |
Replaced ZERO_STRUCT() with ZERO_STRUCTP() in cli_connect_serverlist().
Fix by Matt Chapman <m.chapman@student.unsw.edu.au>
(This used to be commit c44b418d6fd16a257af21f6b5b29b1cdf26015b7)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/libsmb/clientgen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/clientgen.c b/source3/libsmb/clientgen.c index bb792b7e2b..d20ecfa1d9 100644 --- a/source3/libsmb/clientgen.c +++ b/source3/libsmb/clientgen.c @@ -2727,7 +2727,7 @@ BOOL cli_connect_serverlist(struct cli_state *cli, char *p) struct nmb_name calling, called; BOOL connected_ok = True; - ZERO_STRUCT(cli); + ZERO_STRUCTP(cli); if (!cli_initialise(cli)) { |