summaryrefslogtreecommitdiff
path: root/loginrec.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-07-02 08:43:18 +1000
committerDamien Miller <djm@mindrot.org>2000-07-02 08:43:18 +1000
commit9b6d4ab8f9af7bd503ef304b7ffa9d8d77bb21f1 (patch)
treee789069d784ad8bad42b4d2b262656e4b0645fb5 /loginrec.c
parentc92709967e32093611b6e2103a249c652c66fe01 (diff)
- (djm) Fix brace mismatch from Corinna Vinschen <vinschen@cygnus.com>
Diffstat (limited to 'loginrec.c')
-rw-r--r--loginrec.c4
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 @@
170#include "xmalloc.h" 170#include "xmalloc.h"
171#include "loginrec.h" 171#include "loginrec.h"
172 172
173RCSID("$Id: loginrec.c,v 1.13 2000/07/01 03:17:42 djm Exp $"); 173RCSID("$Id: loginrec.c,v 1.14 2000/07/01 22:43:18 djm Exp $");
174 174
175/** 175/**
176 ** prototypes for helper functions in this file 176 ** prototypes for helper functions in this file
@@ -1271,8 +1271,8 @@ syslogin_perform_logout(struct logininfo *li)
1271# ifdef HAVE_LOGWTMP 1271# ifdef HAVE_LOGWTMP
1272 } else { 1272 } else {
1273 logwtmp(line, "", ""); 1273 logwtmp(line, "", "");
1274 }
1275# endif 1274# endif
1275 }
1276 /* FIXME: (ATL - if the need arises) What to do if we have 1276 /* FIXME: (ATL - if the need arises) What to do if we have
1277 * login, but no logout? what if logout but no logwtmp? All 1277 * login, but no logout? what if logout but no logwtmp? All
1278 * routines are in libutil so they should all be there, 1278 * routines are in libutil so they should all be there,