]> andersk Git - openssh.git/commitdiff
- (djm) Fix missed log => logit occurance (reference by function pointer)
authordjm <djm>
Wed, 9 Apr 2003 11:12:00 +0000 (11:12 +0000)
committerdjm <djm>
Wed, 9 Apr 2003 11:12:00 +0000 (11:12 +0000)
ChangeLog
auth.c

index 25bb961efa40750e4b8352722fcd8d8650fe5a1a..fada31e5f1c9326f7f7324ea31e26dfefb87d27f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -34,6 +34,7 @@
      [servconf.c]
      Don't include <krb.h> when compiling with Kerberos 5 support
    - (djm) Fix up missing include for packet.c
+   - (djm) Fix missed log => logit occurance (reference by function pointer)
 
 20030402
  - (bal) if IP_TOS is not found or broken don't try to compile in
diff --git a/auth.c b/auth.c
index 514b0b456b9688bd1b42d67f419b1c26557d12b9..ba26034d5f023a828d78b90de260e0d834e6d097 100644 (file)
--- a/auth.c
+++ b/auth.c
@@ -252,7 +252,7 @@ auth_log(Authctxt *authctxt, int authenticated, char *method, char *info)
            !authctxt->valid ||
            authctxt->failures >= AUTH_FAIL_LOG ||
            strcmp(method, "password") == 0)
-               authlog = log;
+               authlog = logit;
 
        if (authctxt->postponed)
                authmsg = "Postponed";
This page took 0.69264 seconds and 5 git commands to generate.