diff options
| author | Hajimu UMEMOTO <ume@FreeBSD.org> | 2003-03-28 18:23:43 +0000 |
|---|---|---|
| committer | Hajimu UMEMOTO <ume@FreeBSD.org> | 2003-03-28 18:23:43 +0000 |
| commit | bbdd270714009e74cae8ed48c555c0523888d216 (patch) | |
| tree | c8480e31682f8aa6c3cfc5d849a1ca30243b95bf | |
| parent | e2fd179f589bdf2c8f3102f12035c05b40910c49 (diff) | |
Notes
| -rw-r--r-- | usr.sbin/ppp/prompt.c | 5 |
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) |
