struct winbindd_pam_auth_crap_state {
struct winbindd_response *response;
- bool authoritative;
+ uint8_t authoritative;
uint32_t flags;
};
if (req == NULL) {
return NULL;
}
- state->authoritative = true;
+ state->authoritative = 1;
state->flags = request->flags;
if (state->flags & WBFLAG_PAM_AUTH_PAC) {
* We don't know the domain so
* we're not authoritative
*/
- state->authoritative = false;
+ state->authoritative = 0;
tevent_req_nterror(req, NT_STATUS_NO_SUCH_USER);
return tevent_req_post(req, ev);
}