diff options
author | Glenn Strauss <gstrauss@gluelogic.com> | 2016-10-16 01:34:40 -0400 |
---|---|---|
committer | Glenn Strauss <gstrauss@gluelogic.com> | 2016-10-16 01:34:40 -0400 |
commit | 609e9a5050a0399eec690789ba0bb374ce3708c6 (patch) | |
tree | a16fe78ee45dd0a3a13ab78136b694fab55936b5 /src/mod_auth.c | |
parent | 1e129cce4573c3f514d81ae82b2062b816227ccb (diff) | |
download | lighttpd-git-609e9a5050a0399eec690789ba0bb374ce3708c6.tar.gz |
silence warnings from clang ccc-analyzer
Diffstat (limited to 'src/mod_auth.c')
-rw-r--r-- | src/mod_auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mod_auth.c b/src/mod_auth.c index 4d8723d8..4df036b5 100644 --- a/src/mod_auth.c +++ b/src/mod_auth.c @@ -311,7 +311,7 @@ SETDEFAULTS_FUNC(mod_auth_set_defaults) { return HANDLER_ERROR; } - { + if (require) { /*(always true at this point)*/ data_auth * const dauth = data_auth_init(); buffer_copy_buffer(dauth->key, da_file->key); dauth->require->scheme = auth_scheme; |