summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrian <brian@cvs.openbsd.org>2000-12-29 22:37:26 +0000
committerbrian <brian@cvs.openbsd.org>2000-12-29 22:37:26 +0000
commit9d0c70718f65bd7dad817f6b4f1ecef1b30c4d8a (patch)
tree79c875337b45b24974fc4c51efe2865a360dca29
parent80bd6a9e7268ea2eb37a9e52836bbee1ed9e0c44 (diff)
Log the ``MPPE: MasterKey is invalid...'' message as a CCP
diagnostic rather than a warning.
-rw-r--r--usr.sbin/ppp/ppp/mppe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ppp/ppp/mppe.c b/usr.sbin/ppp/ppp/mppe.c
index daad8b2295c..cfcc1c453d8 100644
--- a/usr.sbin/ppp/ppp/mppe.c
+++ b/usr.sbin/ppp/ppp/mppe.c
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $OpenBSD: mppe.c,v 1.2 2000/11/07 23:32:04 brian Exp $
+ * $OpenBSD: mppe.c,v 1.3 2000/12/29 22:37:25 brian Exp $
*/
#include <sys/types.h>
@@ -233,7 +233,7 @@ MPPEInitOptsOutput(struct lcp_opt *o, const struct ccp_config *cfg)
log_Printf(LogCCP, "MPPE: InitOptsOutput\n");
if (!MPPE_MasterKeyValid) {
- log_Printf(LogWARN, "MPPE: MasterKey is invalid,"
+ log_Printf(LogCCP, "MPPE: MasterKey is invalid,"
" MPPE is capable only with CHAP81 authentication\n");
*(u_int32_t *)o->data = htonl(0x0);
return;