diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-09-05 13:24:20 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-09-05 13:24:20 +0000 |
commit | f6044c87c021342d68d614d59bc8dacd32d223b9 (patch) | |
tree | 1e59411c92f35d49856438bf9f42092100a12064 /source3/utils | |
parent | 0cb85e04a974daf4442a7561931ff1be566a8410 (diff) | |
download | samba-f6044c87c021342d68d614d59bc8dacd32d223b9.tar.gz samba-f6044c87c021342d68d614d59bc8dacd32d223b9.tar.bz2 samba-f6044c87c021342d68d614d59bc8dacd32d223b9.zip |
some cleanups to use ZERO_STRUCT() and friends
(This used to be commit 7b154dc4313324dfad6cf0117b8ce246bf12bf16)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/smbpasswd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/smbpasswd.c b/source3/utils/smbpasswd.c index f9b9506297..03553b0ea9 100644 --- a/source3/utils/smbpasswd.c +++ b/source3/utils/smbpasswd.c @@ -430,7 +430,7 @@ int main(int argc, char **argv) exit(1); } - memset(&cli, '\0', sizeof(struct cli_state)); + ZERO_STRUCT(cli); if (!cli_initialise(&cli) || !cli_connect(&cli, remote_machine, &ip)) { fprintf(stderr, "%s: unable to connect to SMB server on machine %s. Error was : %s.\n", |