]> git.ozlabs.org Git - ppp.git/commitdiff
Log calling number failed authorization at warn instead of error, to be
authorFrank Cusack <fcusack@fcusack.com>
Sat, 12 Oct 2002 02:30:21 +0000 (02:30 +0000)
committerFrank Cusack <fcusack@fcusack.com>
Sat, 12 Oct 2002 02:30:21 +0000 (02:30 +0000)
consistent with chap/pap failed authentication log level.  (And it doesn't
merit "error".)

pppd/chap.c
pppd/main.c
pppd/upap.c

index e47d52f6ba68c76e610c229210e8f7fd8aaf81ab..a63dde818fa01e0db3fcb14b062541d6180044e1 100644 (file)
@@ -33,7 +33,7 @@
  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  */
 
  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  */
 
-#define RCSID  "$Id: chap.c,v 1.35 2002/10/12 01:28:05 fcusack Exp $"
+#define RCSID  "$Id: chap.c,v 1.36 2002/10/12 02:30:21 fcusack Exp $"
 
 /*
  * TODO:
 
 /*
  * TODO:
@@ -606,7 +606,7 @@ ChapReceiveResponse(cstate, inp, id, len)
            if (!auth_number()) {
                /* We do not want to leak info about the chap result. */
                code = CHAP_FAILURE; /* XXX exit value will be "wrong" */
            if (!auth_number()) {
                /* We do not want to leak info about the chap result. */
                code = CHAP_FAILURE; /* XXX exit value will be "wrong" */
-               error("calling number %q is not authorized", remote_number);
+               warn("calling number %q is not authorized", remote_number);
            }
        }
 
            }
        }
 
index cc329b1bfeaf35465ffa5c1c53e524ebb4ae90bf..b4271f837087e520f12f19b36da3370f44f5ba89 100644 (file)
@@ -17,7 +17,7 @@
  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  */
 
  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  */
 
-#define RCSID  "$Id: main.c,v 1.115 2002/10/12 01:28:05 fcusack Exp $"
+#define RCSID  "$Id: main.c,v 1.116 2002/10/12 02:30:21 fcusack Exp $"
 
 #include <stdio.h>
 #include <ctype.h>
 
 #include <stdio.h>
 #include <ctype.h>
@@ -366,7 +366,7 @@ main(argc, argv)
      * Early check for remote number authorization.
      */
     if (!auth_number()) {
      * Early check for remote number authorization.
      */
     if (!auth_number()) {
-       error("calling number %q is not authorized", remote_number);
+       warn("calling number %q is not authorized", remote_number);
        exit(EXIT_CNID_AUTH_FAILED);
     }
 
        exit(EXIT_CNID_AUTH_FAILED);
     }
 
index 50a78a2d221657c2e6e15bb3cb314835de203b5b..135db0a22310145d2600ddd98e9aac6c897065f0 100644 (file)
@@ -17,7 +17,7 @@
  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  */
 
  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  */
 
-#define RCSID  "$Id: upap.c,v 1.27 2002/10/12 01:28:05 fcusack Exp $"
+#define RCSID  "$Id: upap.c,v 1.28 2002/10/12 02:30:21 fcusack Exp $"
 
 /*
  * TODO:
 
 /*
  * TODO:
@@ -412,7 +412,7 @@ upap_rauthreq(u, inp, id, len)
        if (!auth_number()) {
            /* We do not want to leak info about the pap result. */
            retcode = UPAP_AUTHNAK; /* XXX exit value will be "wrong" */
        if (!auth_number()) {
            /* We do not want to leak info about the pap result. */
            retcode = UPAP_AUTHNAK; /* XXX exit value will be "wrong" */
-           error("calling number %q is not authorized", remote_number);
+           warn("calling number %q is not authorized", remote_number);
        }
     }
 
        }
     }