Lines Matching defs:ut
91 ftpd_login(const struct utmp *ut)
127 (void)write(fd, ut, sizeof(UTMP));
133 UTMP ut;
142 while (read(fd, &ut, sizeof(UTMP)) == sizeof(UTMP)) {
143 if (!ut.ut_name[0]
144 || strncmp(ut.ut_line, line, UT_LINESIZE))
146 memset(ut.ut_name, 0, UT_NAMESIZE);
147 memset(ut.ut_host, 0, UT_HOSTSIZE);
148 (void)time(&ut.ut_time);
150 (void)write(fd, &ut, sizeof(UTMP));
162 ftpd_loginx(const struct utmpx *ut)
164 (void)pututxline(ut);