don't zero-initialise variable

For global variables, the C standard ensures that this variable will be
zeroed on startup.

Signed-off-by: Ralf Ramsauer <ralf@ramses-pyramidenbau.de>
This commit is contained in:
Ralf Ramsauer 2017-03-11 16:05:24 -08:00
parent 119d1b2da1
commit 8c5127b375

View File

@ -2424,7 +2424,6 @@ main(int argc, char **argv)
__progname++;
#endif
memset(password, 0, sizeof(password));
srand(time(NULL));
fw_query_init();