Home | History | Annotate | Download | only in other

Lines Matching refs:username

15     usage: login [-p] [-h host] [[-f] username]
147 char username[33], *pass = NULL, **ss;
152 if (f_flag && toys.optc != 1) error_exit("-f requires username");
167 username[sizeof(username)-1] = 0;
168 if (*toys.optargs) xstrncpy(username, *toys.optargs, sizeof(username));
170 read_user(username, sizeof(username));
171 if (!*username) continue;
174 pwd = getpwnam(username);
186 spwd = getspnam (username);
194 syslog(LOG_WARNING, "invalid password for '%s' on %s %s %s", username,
203 *username = 0;