diff options
author | hm <hm@FreeBSD.org> | 2001-01-10 09:41:42 +0000 |
---|---|---|
committer | hm <hm@FreeBSD.org> | 2001-01-10 09:41:42 +0000 |
commit | 9436fea6506c9c2b0d4f3485078ba98a935bda1c (patch) | |
tree | be4775061666555f4e24c99a21b9a2ad1fe0fc7f /usr.sbin/i4b | |
parent | bb6dbcf3b2a0d48c5fc4d87972a640bdeccff1ea (diff) | |
download | FreeBSD-src-9436fea6506c9c2b0d4f3485078ba98a935bda1c.zip FreeBSD-src-9436fea6506c9c2b0d4f3485078ba98a935bda1c.tar.gz |
correct a small typo in isdnd that broke the ppp-expect-password option
Submitted by: Thomas Moestl <tmoestl@gmx.net>
Diffstat (limited to 'usr.sbin/i4b')
-rw-r--r-- | usr.sbin/i4b/isdnd/rc_scan.l | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/i4b/isdnd/rc_scan.l b/usr.sbin/i4b/isdnd/rc_scan.l index 198d269..92c5189 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; } |