summaryrefslogtreecommitdiff
path: root/loginrec.c
diff options
context:
space:
mode:
authorandre <andre>2000-06-19 09:11:30 +0000
committerandre <andre>2000-06-19 09:11:30 +0000
commit98cabe05469dd5ed132b47d95177867c70992c8b (patch)
treeac79c90fa09e0f7f97a1d5f844a301a4a24ed875 /loginrec.c
parentb4db42f781babd3935145d99e44a287808ae832d (diff)
downloadopenssh-git-98cabe05469dd5ed132b47d95177867c70992c8b.tar.gz
*** empty log message ***
Diffstat (limited to 'loginrec.c')
-rw-r--r--loginrec.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/loginrec.c b/loginrec.c
index e51d686b..8df2e78e 100644
--- a/loginrec.c
+++ b/loginrec.c
@@ -170,7 +170,7 @@
#include "xmalloc.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
@@ -301,8 +301,9 @@ login_get_lastlog(struct logininfo *li, const int uid)
* reliably search wtmp(x) for the last login (see
* wtmp_get_entry().) */
pw = getpwuid(uid);
- strlcpy(li->username, pw->pw_name,
- MIN_SIZEOF(li->username, pw->pw_name));
+ /* No MIN_SIZEOF here - we absolutely *must not* truncate the
+ * username */
+ strlcpy(li->username, pw->pw_name, li->username);
#endif
if (getlast_entry(li))
return li;