Commit 5eec624d 5eec624d0ed7cfec30bb780d9ccda76f2408a72f by Sam Roberts

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.
1 parent 746ee9e4
......@@ -221,7 +221,7 @@ authority_authenticate (authority_t authority)
{
return authority->_authenticate (authority);
}
return 0;
return EINVAL;
}
int
......