summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1995-07-31 21:54:46 +0000
committerBruce Evans <bde@FreeBSD.org>1995-07-31 21:54:46 +0000
commit0d0e55bbbd96a5ba211ada5dd0a0ddfa73e3f49a (patch)
tree29cc2bc16e24635da89ee7151d79403bd45786ce
parentf91307e23dd881e261dc3ae406347f93ed26e0e9 (diff)
Notes
-rw-r--r--sys/net/if_ppp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/if_ppp.c b/sys/net/if_ppp.c
index c3f5bb1a0f04..6b7d3bbb4424 100644
--- a/sys/net/if_ppp.c
+++ b/sys/net/if_ppp.c
@@ -69,7 +69,7 @@
* Paul Mackerras (paulus@cs.anu.edu.au).
*/
-/* $Id: if_ppp.c,v 1.17 1995/07/29 13:39:44 bde Exp $ */
+/* $Id: if_ppp.c,v 1.18 1995/07/31 21:01:34 bde Exp $ */
/* from if_sl.c,v 1.11 84/10/04 12:54:47 rick Exp */
#include "ppp.h"
@@ -902,11 +902,11 @@ pppstart(tp)
for (;;) {
/*
- * If there is more in the output queue, just send it now.
+ * Call output process whether or not there is any output.
* We are being called in lieu of ttstart and must do what
* it would.
*/
- if (CCOUNT(&tp->t_outq) != 0 && tp->t_oproc != NULL) {
+ if (tp->t_oproc != NULL) {
(*tp->t_oproc)(tp);
if (CCOUNT(&tp->t_outq) > PPP_HIWAT)
return 0;