]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
[loginrec.c] Bug 347: Fix typo (WTMPX_FILE) report by rodney@bond.net
authorTim Rice <tim@multitalents.net>
Sun, 14 Jul 2002 22:33:20 +0000 (15:33 -0700)
committerTim Rice <tim@multitalents.net>
Sun, 14 Jul 2002 22:33:20 +0000 (15:33 -0700)
ChangeLog
loginrec.c

index cf076c3df801523291813ad92154392be970bec8..cf7c3870c245c69f7ef3a52c2fbc56de8a878cd3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,7 @@
    Based on patch from nalin@redhat.com of code extracted from Owl's package
  - (tim) [ssh_prng_cmds.in] Bug 323 arp -n flag doesn't exist under Solaris.
    report by chris@by-design.net
+ - (tim) [loginrec.c] Bug 347: Fix typo (WTMPX_FILE) report by rodney@bond.net
 
 20020712
  - (tim) [Makefile.in] quiet down install-files: and check-user:
  - (stevesk) entropy.c: typo in debug message
  - (djm) ssh-keygen -i needs seeded RNG; report from markus@
 
-$Id: ChangeLog,v 1.2364 2002/07/14 21:43:57 tim Exp $
+$Id: ChangeLog,v 1.2365 2002/07/14 22:33:20 tim Exp $
index 609e84768c412075c3876bea54766a0a759259dd..382141b9a07208deb173d0dd930fc1e53bda00e1 100644 (file)
 #include "log.h"
 #include "atomicio.h"
 
-RCSID("$Id: loginrec.c,v 1.40 2002/04/23 13:09:19 djm Exp $");
+RCSID("$Id: loginrec.c,v 1.41 2002/07/14 22:33:20 tim Exp $");
 
 #ifdef HAVE_UTIL_H
 #  include <util.h>
@@ -1249,7 +1249,7 @@ wtmpx_get_entry(struct logininfo *li)
        }
        if (fstat(fd, &st) != 0) {
                log("wtmpx_get_entry: couldn't stat %s: %s",
-                   WTMP_FILE, strerror(errno));
+                   WTMPX_FILE, strerror(errno));
                close(fd);
                return 0;
        }