Lines Matching defs:utmp
61 #include <utmp.h>
302 struct utmp utmp;
304 (void)memset((void *)&utmp, 0, sizeof(utmp));
305 utmp.ut_time = now.tv_sec;
306 (void)strncpy(utmp.ut_name, username, sizeof(utmp.ut_name));
308 (void)strncpy(utmp.ut_host, hostname, sizeof(utmp.ut_host));
309 (void)strncpy(utmp.ut_line, tty, sizeof(utmp.ut_line));
310 login(&utmp);