Lines Matching refs:ut
1142 struct utmpx ut; in doit() local
1145 (void) memset(&ut, 0, sizeof (ut)); in doit()
1146 (void) strncpy(ut.ut_user, ".rlogin", sizeof (ut.ut_user)); in doit()
1147 (void) strncpy(ut.ut_line, line, sizeof (ut.ut_line)); in doit()
1148 ut.ut_pid = getpid(); in doit()
1149 ut.ut_id[0] = 'r'; in doit()
1150 ut.ut_id[1] = (char)SC_WILDC; in doit()
1151 ut.ut_id[2] = (char)SC_WILDC; in doit()
1152 ut.ut_id[3] = (char)SC_WILDC; in doit()
1153 ut.ut_type = LOGIN_PROCESS; in doit()
1154 ut.ut_exit.e_termination = 0; in doit()
1155 ut.ut_exit.e_exit = 0; in doit()
1156 (void) time(&ut.ut_tv.tv_sec); in doit()
1157 if (makeutx(&ut) == NULL) in doit()