summaryrefslogtreecommitdiff
path: root/login.c
diff options
context:
space:
mode:
Diffstat (limited to 'login.c')
-rw-r--r--login.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/login.c b/login.c
index 54d442052..da11b245f 100644
--- a/login.c
+++ b/login.c
@@ -18,7 +18,7 @@
18 */ 18 */
19 19
20#include "includes.h" 20#include "includes.h"
21RCSID("$Id: login.c,v 1.21 2000/01/29 09:55:10 damien Exp $"); 21RCSID("$Id: login.c,v 1.22 2000/02/02 08:17:41 damien Exp $");
22 22
23#if defined(HAVE_UTMPX_H) && defined(USE_UTMPX) 23#if defined(HAVE_UTMPX_H) && defined(USE_UTMPX)
24# include <utmpx.h> 24# include <utmpx.h>
@@ -255,7 +255,7 @@ record_login(int pid, const char *ttyname, const char *user, uid_t uid,
255 strncpy(ll.ll_line, ttyname + 5, sizeof(ll.ll_line)); 255 strncpy(ll.ll_line, ttyname + 5, sizeof(ll.ll_line));
256 strncpy(ll.ll_host, host, sizeof(ll.ll_host)); 256 strncpy(ll.ll_host, host, sizeof(ll.ll_host));
257#ifdef LASTLOG_IS_DIR 257#ifdef LASTLOG_IS_DIR
258 snprintf(buf, sizeof(buf), "%s/%s", lastlog, logname); 258 snprintf(buf, sizeof(buf), "%s/%s", lastlog, user);
259 fd = open(buf, O_RDWR); 259 fd = open(buf, O_RDWR);
260 if (fd >= 0) { 260 if (fd >= 0) {
261#else /* LASTLOG_IS_DIR */ 261#else /* LASTLOG_IS_DIR */