summaryrefslogtreecommitdiff
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
parentc92709967e32093611b6e2103a249c652c66fe01 (diff)
- (djm) Fix brace mismatch from Corinna Vinschen <vinschen@cygnus.com>
-rw-r--r--ChangeLog3
-rw-r--r--loginrec.c4
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 521e0bf61..8d9dc9856 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
120000702
2 - (djm) Fix brace mismatch from Corinna Vinschen <vinschen@cygnus.com>
3
120000701 420000701
2 - (djm) Fix Tru64 SIA problems reported by John P Speno <speno@isc.upenn.edu> 5 - (djm) Fix Tru64 SIA problems reported by John P Speno <speno@isc.upenn.edu>
3 - (djm) Login fixes from Tom Bertelson <tbert@abac.com> 6 - (djm) Login fixes from Tom Bertelson <tbert@abac.com>
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,