]> git.ozlabs.org Git - ppp.git/commitdiff
print name of peer in messages
authorPaul Mackerras <paulus@samba.org>
Thu, 27 Nov 1997 06:07:48 +0000 (06:07 +0000)
committerPaul Mackerras <paulus@samba.org>
Thu, 27 Nov 1997 06:07:48 +0000 (06:07 +0000)
pppd/chap.c

index b418f6f493f002a192b0d8699a3530dcd5becc02..189eb20ecc2de6ebbf5a22359c39fd3365e037fe 100644 (file)
@@ -34,7 +34,7 @@
  */
 
 #ifndef lint
-static char rcsid[] = "$Id: chap.c,v 1.14 1997/04/30 05:51:08 paulus Exp $";
+static char rcsid[] = "$Id: chap.c,v 1.15 1997/11/27 06:07:48 paulus Exp $";
 #endif
 
 /*
@@ -586,9 +586,12 @@ ChapReceiveResponse(cstate, inp, id, len)
        }
        if (cstate->chal_interval != 0)
            TIMEOUT(ChapRechallenge, cstate, cstate->chal_interval);
+       syslog(LOG_NOTICE, "CHAP peer authentication succeeded for %s",
+              rhostname);
 
     } else {
-       syslog(LOG_ERR, "CHAP peer authentication failed");
+       syslog(LOG_ERR, "CHAP peer authentication failed for remote host %s",
+              rhostname);
        cstate->serverstate = CHAPSS_BADAUTH;
        auth_peer_fail(cstate->unit, PPP_CHAP);
     }