*** empty log message ***

This commit is contained in:
andre 2000-06-19 09:11:30 +00:00
parent b4db42f781
commit 98cabe0546
1 changed files with 4 additions and 3 deletions

View File

@ -170,7 +170,7 @@
#include "xmalloc.h" #include "xmalloc.h"
#include "loginrec.h" #include "loginrec.h"
RCSID("$Id: loginrec.c,v 1.7 2000/06/19 08:20:03 andre Exp $"); RCSID("$Id: loginrec.c,v 1.8 2000/06/19 09:11:30 andre Exp $");
/** /**
** prototypes for helper functions in this file ** prototypes for helper functions in this file
@ -301,8 +301,9 @@ login_get_lastlog(struct logininfo *li, const int uid)
* reliably search wtmp(x) for the last login (see * reliably search wtmp(x) for the last login (see
* wtmp_get_entry().) */ * wtmp_get_entry().) */
pw = getpwuid(uid); pw = getpwuid(uid);
strlcpy(li->username, pw->pw_name, /* No MIN_SIZEOF here - we absolutely *must not* truncate the
MIN_SIZEOF(li->username, pw->pw_name)); * username */
strlcpy(li->username, pw->pw_name, li->username);
#endif #endif
if (getlast_entry(li)) if (getlast_entry(li))
return li; return li;