authority_authenticate() was returning success if authority was NULL, this
is an error for all the other authority_* APIs, now it is here, as well.
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -221,7 +221,7 @@ authority_authenticate (authority_t authority) | ... | @@ -221,7 +221,7 @@ authority_authenticate (authority_t authority) |
221 | { | 221 | { |
222 | return authority->_authenticate (authority); | 222 | return authority->_authenticate (authority); |
223 | } | 223 | } |
224 | return 0; | 224 | return EINVAL; |
225 | } | 225 | } |
226 | 226 | ||
227 | int | 227 | int | ... | ... |
-
Please register or sign in to post a comment