summaryrefslogtreecommitdiffstats
path: root/sys/dev/cx/if_cx.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/cx/if_cx.c')
-rw-r--r--sys/dev/cx/if_cx.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/cx/if_cx.c b/sys/dev/cx/if_cx.c
index d72a4f2..889a1f6 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);
}
/*
OpenPOWER on IntegriCloud