(login): Initialize DATA so that setutent_r will actually do something.

This commit is contained in:
Miles Bader 1996-06-29 03:37:49 +00:00
parent 6a60a93757
commit 3e72eb7096

View file

@ -86,7 +86,7 @@ login (const struct utmp *ut)
char *tty = _tty;
int found_tty;
const char *ttyp;
struct utmp_data data;
struct utmp_data data = { -1 };
/* Seek tty. */
found_tty = tty_name (STDIN_FILENO, &tty, sizeof (_tty));