summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-01-27 18:22:13 +1100
committerDamien Miller <djm@mindrot.org>2000-01-27 18:22:13 +1100
commit27f4c78698de46b3a22bcdb2f47f20f74950d9bc (patch)
tree64133cfb142ad13abb4b4bd6bc55f3e8350a71af
parent3aa0fa4c7a6f2fbfcdd1e77069fa97805faac69c (diff)
- NeXT keeps it lastlog in /usr/adm. Report from
mouring@newton.pconline.com
-rw-r--r--ChangeLog6
-rw-r--r--configure.in2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 692a0ea99..ea454f5e1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
120000126
2 - Released 1.2.2 stable
3
4 - NeXT keeps it lastlog in /usr/adm. Report from
5 mouring@newton.pconline.com
6
120000125 720000125
2 - Fix NULL pointer dereference in login.c. Fix from Andre Lucas 8 - Fix NULL pointer dereference in login.c. Fix from Andre Lucas
3 <andre.lucas@dial.pipex.com> 9 <andre.lucas@dial.pipex.com>
diff --git a/configure.in b/configure.in
index 615a8dac3..6423b62e2 100644
--- a/configure.in
+++ b/configure.in
@@ -487,7 +487,7 @@ AC_ARG_WITH(lastlog,
487 ], 487 ],
488 [ 488 [
489 AC_MSG_CHECKING([location of lastlog file]) 489 AC_MSG_CHECKING([location of lastlog file])
490 for lastlog in /var/log/lastlog /var/adm/lastlog /etc/security/lastlog ; do 490 for lastlog in /var/log/lastlog /var/adm/lastlog /usr/adm/lastlog /etc/security/lastlog ; do
491 if test -f $lastlog ; then 491 if test -f $lastlog ; then
492 gotlastlog="file" 492 gotlastlog="file"
493 break 493 break