mirror of
https://git.FreeBSD.org/src.git
synced 2025-02-08 17:53:08 +00:00
Remove extraneous setutxent() calls in write(1).
We already call setutxent() once during initialization. Furthermore, the subsequent calls occur after the process has entered capability mode, so they fail, and attempts to fetch database entries fail as a result. PR: 235096 Submitted by: fullermd@over-yonder.net MFC after: 3 days
This commit is contained in:
parent
862203935e
commit
27ed53c311
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=343354
@ -204,7 +204,6 @@ utmp_chk(char *user, char *tty)
|
||||
struct utmpx lu, *u;
|
||||
|
||||
strncpy(lu.ut_line, tty, sizeof lu.ut_line);
|
||||
setutxent();
|
||||
while ((u = getutxline(&lu)) != NULL)
|
||||
if (u->ut_type == USER_PROCESS &&
|
||||
strcmp(user, u->ut_user) == 0) {
|
||||
@ -237,7 +236,6 @@ search_utmp(int devfd, char *user, char *tty, char *mytty, uid_t myuid)
|
||||
bestatime = 0;
|
||||
user_is_me = 0;
|
||||
|
||||
setutxent();
|
||||
while ((u = getutxent()) != NULL)
|
||||
if (u->ut_type == USER_PROCESS &&
|
||||
strcmp(user, u->ut_user) == 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user