Lines Matching defs:user
64 const void *rhost, *tty, *user;
68 pam_err = pam_get_item(pamh, PAM_USER, &user);
72 if (user == NULL)
75 PAM_LOG("Got user: %s", (const char *)user);
88 PAM_LOG("Checking login.access for user %s on tty %s",
89 (const char *)user, (const char *)tty);
90 if (login_access(user, tty) != 0)
93 (const char *)user, (const char *)tty);
95 PAM_LOG("Checking login.access for user %s from host %s",
96 (const char *)user, (const char *)rhost);
97 if (login_access(user, rhost) != 0)
100 (const char *)user, (const char *)rhost);