diff options
Diffstat (limited to 'accel-pptpd/ppp/ppp.c')
-rw-r--r-- | accel-pptpd/ppp/ppp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel-pptpd/ppp/ppp.c b/accel-pptpd/ppp/ppp.c index ceefc1ea..a26e6446 100644 --- a/accel-pptpd/ppp/ppp.c +++ b/accel-pptpd/ppp/ppp.c @@ -397,7 +397,7 @@ void __export ppp_layer_finished(struct ppp_t *ppp, struct ppp_layer_data_t *d) list_for_each_entry(n, &ppp->layers, entry) { list_for_each_entry(d, &n->items, entry) { - if (!d->finished) + if (d->starting && !d->finished) return; } } |