Home | History | Annotate | Download | only in openssh

Lines Matching full:authenticated

218 	int authenticated = 0;
281 authenticated = m->userauth(authctxt);
283 userauth_finish(authctxt, authenticated, method, NULL);
292 userauth_finish(Authctxt *authctxt, int authenticated, const char *method,
298 if (!authctxt->valid && authenticated)
299 fatal("INTERNAL ERROR: authenticated invalid user %s",
301 if (authenticated && authctxt->postponed)
302 fatal("INTERNAL ERROR: authenticated and postponed");
305 if (authenticated && authctxt->pw->pw_uid == 0 &&
307 authenticated = 0;
313 if (authenticated && options.num_auth_methods != 0) {
315 authenticated = 0;
321 auth_log(authctxt, authenticated, partial, method, submethod);
327 if (options.use_pam && authenticated) {
342 if (authenticated && cray_access_denied(authctxt->user)) {
343 authenticated = 0;
348 if (authenticated == 1) {