diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 1997-07-02 19:18:42 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1997-07-02 19:18:42 +0000 |
commit | 177c95e45a00a948744b145b182a4922cd0411a9 (patch) | |
tree | de21dcb2f9f5dea5ad08d8bb2255b9275b3ea92d | |
parent | b9d597327a74f04d5f52ba91003886e46c1ead63 (diff) |
Notes
-rw-r--r-- | usr.sbin/ppp/lqr.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/ppp/lqr.c b/usr.sbin/ppp/lqr.c index 798bcf975dcaa..a8831ace94c6f 100644 --- a/usr.sbin/ppp/lqr.c +++ b/usr.sbin/ppp/lqr.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: lqr.c,v 1.14 1997/05/26 00:44:05 brian Exp $ + * $Id: lqr.c,v 1.15 1997/06/09 03:27:27 brian Exp $ * * o LQR based on RFC1333 * @@ -192,6 +192,9 @@ StartLqm() int period; lqrsendcnt = 0; /* start waiting all over for ECHOs */ + echoseq = 0; + gotseq = 0; + lqmmethod = LQM_ECHO; if (Enabled(ConfLqr)) lqmmethod |= LQM_LQR; |