diff options
author | Damien Miller <djm@mindrot.org> | 1999-12-21 11:30:56 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 1999-12-21 11:30:56 +0100 |
commit | ca9fbb6eac8c4cb90badc5d868cf81417484c87f (patch) | |
tree | 2ad887205c8a5c971cbdee30b103a3177a026eea /login.c | |
parent | Make ready for 1.2.1pre19 (diff) | |
download | openssh-ca9fbb6eac8c4cb90badc5d868cf81417484c87f.tar.xz openssh-ca9fbb6eac8c4cb90badc5d868cf81417484c87f.zip |
Fix broken macros
Diffstat (limited to 'login.c')
-rw-r--r-- | login.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,7 +18,7 @@ */ #include "includes.h" -RCSID("$Id: login.c,v 1.8 1999/12/21 00:18:08 damien Exp $"); +RCSID("$Id: login.c,v 1.9 1999/12/21 10:30:56 damien Exp $"); #if defined(HAVE_UTMPX_H) && defined(USE_UTMPX) # include <utmpx.h> @@ -152,7 +152,7 @@ record_login(int pid, const char *ttyname, const char *user, uid_t uid, login(&u); -#ifdef defined(HAVE_LASTLOG_H) && !defined(DISABLE_LASTLOG) +#if defined(HAVE_LASTLOG_H) && !defined(DISABLE_LASTLOG) lastlog = _PATH_LASTLOG; /* Update lastlog unless actually recording a logout. */ |