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/cx | |
| parent | dd3e3dfb6f0bad090b392e0db747f5994c241b62 (diff) | |
Notes
Diffstat (limited to 'sys/dev/cx')
| -rw-r--r-- | sys/dev/cx/if_cx.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/cx/if_cx.c b/sys/dev/cx/if_cx.c index d72a4f26b656..889a1f622468 100644 --- a/sys/dev/cx/if_cx.c +++ b/sys/dev/cx/if_cx.c @@ -946,7 +946,8 @@ static void cx_tlf (struct sppp *sp) CX_DEBUG (d, ("cx_tlf\n")); /* cx_set_dtr (d->chan, 0);*/ /* cx_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 cx_tls (struct sppp *sp) @@ -954,7 +955,8 @@ static void cx_tls (struct sppp *sp) drv_t *d = sp->pp_if.if_softc; CX_DEBUG (d, ("cx_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); } /* |
