diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-04-23 09:32:29 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-04-23 09:32:29 +0000 |
commit | 9265628c20fba2c3281feebbc53d4a90c81f92c9 (patch) | |
tree | 3a5ad546f9f157fb6fd1eebbd064e09d97f90a28 /source3/utils | |
parent | 5cfcb6b4c7bf7eaf10922bcecfbe9b9e2416bb5f (diff) | |
download | samba-9265628c20fba2c3281feebbc53d4a90c81f92c9.tar.gz samba-9265628c20fba2c3281feebbc53d4a90c81f92c9.tar.bz2 samba-9265628c20fba2c3281feebbc53d4a90c81f92c9.zip |
This const isn't quite vaild C.
Andrew Bartlett
(This used to be commit de96c1aaca9006696d61aa3d07151c0f74516e63)
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 88913c8051..445d292112 100644 --- a/source3/utils/ntlm_auth.c +++ b/source3/utils/ntlm_auth.c @@ -464,7 +464,7 @@ static BOOL check_auth_crap(void) and valid authentication types */ -static const DATA_BLOB get_challenge(void) +static DATA_BLOB get_challenge(void) { static DATA_BLOB chal; if (opt_challenge.length) |