From de8ebe46b25f72e7c1297fca072659190bd55144 Mon Sep 17 00:00:00 2001 From: Hellmuth Michaelis Date: Wed, 10 Jan 2001 09:41:42 +0000 Subject: [PATCH] correct a small typo in isdnd that broke the ppp-expect-password option Submitted by: Thomas Moestl --- usr.sbin/i4b/isdnd/rc_scan.l | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/i4b/isdnd/rc_scan.l b/usr.sbin/i4b/isdnd/rc_scan.l index 198d269adce4..92c5189d805c 100644 --- a/usr.sbin/i4b/isdnd/rc_scan.l +++ b/usr.sbin/i4b/isdnd/rc_scan.l @@ -34,7 +34,7 @@ * * $FreeBSD$ * - * last edit-date: [Mon Oct 2 22:49:40 2000] + * last edit-date: [Wed Jan 10 10:37:11 2001] * *---------------------------------------------------------------------------*/ @@ -149,7 +149,7 @@ ppp-auth-rechallenge { return PPP_AUTH_RECHALLENGE; } ppp-auth-paranoid { return PPP_AUTH_PARANOID; } ppp-expect-auth { return PPP_EXPECT_AUTH; } ppp-expect-name { return PPP_EXPECT_NAME; } -ppp-expect-password { return PPP_EXPECT_NAME; } +ppp-expect-password { return PPP_EXPECT_PASSWORD; } ppp-send-auth { return PPP_SEND_AUTH; } ppp-send-name { return PPP_SEND_NAME; } ppp-send-password { return PPP_SEND_PASSWORD; }