Home | History | Annotate | Download | only in openssh

Lines Matching defs:authenticated

219 	int authenticated = 0;
283 authenticated = m->userauth(authctxt);
285 userauth_finish(authctxt, authenticated, method);
293 userauth_finish(Authctxt *authctxt, int authenticated, char *method)
297 if (!authctxt->valid && authenticated)
298 fatal("INTERNAL ERROR: authenticated invalid user %s",
302 if (authenticated && authctxt->pw->pw_uid == 0 &&
304 authenticated = 0;
311 if (options.use_pam && authenticated) {
326 if (authenticated && cray_access_denied(authctxt->user)) {
327 authenticated = 0;
333 auth_log(authctxt, authenticated, method, " ssh2");
339 if (authenticated == 1) {