summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHajimu UMEMOTO <ume@FreeBSD.org>2003-03-28 18:23:43 +0000
committerHajimu UMEMOTO <ume@FreeBSD.org>2003-03-28 18:23:43 +0000
commitbbdd270714009e74cae8ed48c555c0523888d216 (patch)
treec8480e31682f8aa6c3cfc5d849a1ca30243b95bf
parente2fd179f589bdf2c8f3102f12035c05b40910c49 (diff)
Notes
-rw-r--r--usr.sbin/ppp/prompt.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/usr.sbin/ppp/prompt.c b/usr.sbin/ppp/prompt.c
index 09317065b7db..839e65542aa0 100644
--- a/usr.sbin/ppp/prompt.c
+++ b/usr.sbin/ppp/prompt.c
@@ -103,6 +103,11 @@ prompt_Display(struct prompt *p)
if (p->bundle->ncp.ipcp.fsm.state == ST_OPENED)
pconnect = "PPP";
+#ifndef NOINET6
+ else if (!Enabled(p->bundle, OPT_IPCP) &&
+ p->bundle->ncp.ipv6cp.fsm.state == ST_OPENED)
+ pconnect = "PPP";
+#endif
else if (bundle_Phase(p->bundle) == PHASE_NETWORK)
pconnect = "PPp";
else if (bundle_Phase(p->bundle) == PHASE_AUTHENTICATE)