diff options
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/ntlm_auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/ntlm_auth.c b/source3/utils/ntlm_auth.c index 39dcd9993d..fd8424065c 100644 --- a/source3/utils/ntlm_auth.c +++ b/source3/utils/ntlm_auth.c @@ -181,7 +181,7 @@ DATA_BLOB get_challenge(void) chal = data_blob(NULL, 8); - generate_random_buffer(chal.data, chal.length, False); + generate_random_buffer(chal.data, chal.length); return chal; } |