Lines Matching refs:ut
48 struct utmpx ut; in ftpd_logwtmp() local
50 memset(&ut, 0, sizeof(ut)); in ftpd_logwtmp()
54 ut.ut_type = USER_PROCESS; in ftpd_logwtmp()
55 (void)strncpy(ut.ut_user, user, sizeof(ut.ut_user)); in ftpd_logwtmp()
57 realhostname_sa(ut.ut_host, sizeof(ut.ut_host), in ftpd_logwtmp()
61 ut.ut_type = DEAD_PROCESS; in ftpd_logwtmp()
64 ut.ut_pid = getpid(); in ftpd_logwtmp()
65 gettimeofday(&ut.ut_tv, NULL); in ftpd_logwtmp()
66 (void)strncpy(ut.ut_id, id, sizeof(ut.ut_id)); in ftpd_logwtmp()
67 (void)strncpy(ut.ut_line, "ftpd", sizeof(ut.ut_line)); in ftpd_logwtmp()
69 pututxline(&ut); in ftpd_logwtmp()