diff options
author | Damien Miller <djm@mindrot.org> | 2000-07-02 00:43:18 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-07-02 00:43:18 +0200 |
commit | 9b6d4ab8f9af7bd503ef304b7ffa9d8d77bb21f1 (patch) | |
tree | e789069d784ad8bad42b4d2b262656e4b0645fb5 /loginrec.c | |
parent | Release 2.1.1p2 (diff) | |
download | openssh-9b6d4ab8f9af7bd503ef304b7ffa9d8d77bb21f1.tar.xz openssh-9b6d4ab8f9af7bd503ef304b7ffa9d8d77bb21f1.zip |
- (djm) Fix brace mismatch from Corinna Vinschen <vinschen@cygnus.com>
Diffstat (limited to 'loginrec.c')
-rw-r--r-- | loginrec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/loginrec.c b/loginrec.c index 5338847aa..438c06767 100644 --- a/loginrec.c +++ b/loginrec.c @@ -170,7 +170,7 @@ #include "xmalloc.h" #include "loginrec.h" -RCSID("$Id: loginrec.c,v 1.13 2000/07/01 03:17:42 djm Exp $"); +RCSID("$Id: loginrec.c,v 1.14 2000/07/01 22:43:18 djm Exp $"); /** ** prototypes for helper functions in this file @@ -1271,8 +1271,8 @@ syslogin_perform_logout(struct logininfo *li) # ifdef HAVE_LOGWTMP } else { logwtmp(line, "", ""); - } # endif + } /* FIXME: (ATL - if the need arises) What to do if we have * login, but no logout? what if logout but no logwtmp? All * routines are in libutil so they should all be there, |