summaryrefslogtreecommitdiff
path: root/sys/net
diff options
context:
space:
mode:
authorkn <kn@cvs.openbsd.org>2019-06-22 10:16:15 +0000
committerkn <kn@cvs.openbsd.org>2019-06-22 10:16:15 +0000
commit68c0ff6cb2bc1917e5a61889e4a930010920fc4a (patch)
treebc73c11c045dd7d6a31a91bbca2b1195e14b9b84 /sys/net
parent66f18d8a2b60b29dd3591d3a29d0a548914def25 (diff)
Revert accidentially committed hunk from previous
Diffstat (limited to 'sys/net')
-rw-r--r--sys/net/if_spppsubr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_spppsubr.c b/sys/net/if_spppsubr.c
index f2fc1eae6a6..82e555aaad0 100644
--- a/sys/net/if_spppsubr.c
+++ b/sys/net/if_spppsubr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_spppsubr.c,v 1.176 2019/06/22 10:14:30 kn Exp $ */
+/* $OpenBSD: if_spppsubr.c,v 1.177 2019/06/22 10:16:14 kn Exp $ */
/*
* Synchronous PPP link level subroutines.
*
@@ -1608,7 +1608,7 @@ sppp_lcp_init(struct sppp *sp)
* the exponential backoff option. Note that these values are
* relevant for all control protocols, not just LCP only.
*/
- sp->lcp.timeout = 1;
+ sp->lcp.timeout = 1 * hz;
sp->lcp.max_terminate = 2;
sp->lcp.max_configure = 10;
sp->lcp.max_failure = 10;