diff options
| author | Roman Kurakin <rik@FreeBSD.org> | 2004-12-03 16:57:15 +0000 |
|---|---|---|
| committer | Roman Kurakin <rik@FreeBSD.org> | 2004-12-03 16:57:15 +0000 |
| commit | 052bf4427fee9b86c305d18c5d5e8a5be16304af (patch) | |
| tree | 99796a5bc6860fdea8521ca82dee114780bc35b2 /sys/dev/ctau | |
| parent | dd3e3dfb6f0bad090b392e0db747f5994c241b62 (diff) | |
Notes
Diffstat (limited to 'sys/dev/ctau')
| -rw-r--r-- | sys/dev/ctau/if_ct.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/ctau/if_ct.c b/sys/dev/ctau/if_ct.c index 9cc08cd82bc20..fe18337bdcb83 100644 --- a/sys/dev/ctau/if_ct.c +++ b/sys/dev/ctau/if_ct.c @@ -875,7 +875,8 @@ static void ct_tlf (struct sppp *sp) CT_DEBUG (d, ("ct_tlf\n")); /* ct_set_dtr (d->chan, 0);*/ /* ct_set_rts (d->chan, 0);*/ - sp->pp_down (sp); + if (!(d->pp.pp_flags & PP_FR) && !(d->pp.pp_if.if_flags & PP_CISCO)) + sp->pp_down (sp); } static void ct_tls (struct sppp *sp) @@ -883,7 +884,8 @@ static void ct_tls (struct sppp *sp) drv_t *d = sp->pp_if.if_softc; CT_DEBUG (d, ("ct_tls\n")); - sp->pp_up (sp); + if (!(d->pp.pp_flags & PP_FR) && !(d->pp.pp_if.if_flags & PP_CISCO)) + sp->pp_up (sp); } /* |
