diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2010-09-03 13:12:32 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2010-09-03 13:12:32 +0000 |
commit | 70e478ac35135aba05018ee81f3fe20921ccd723 (patch) | |
tree | 06e16a17ead09f825af43d7c24804fc08abcb667 /sys/netmpls | |
parent | bdb6bb42b1418e6e7644878e12377e247b739020 (diff) |
Use MPLS_INKERNEL_LOOP_MAX instead of 16 when initializing mpls_inkloop.
Diffstat (limited to 'sys/netmpls')
-rw-r--r-- | sys/netmpls/mpls_raw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netmpls/mpls_raw.c b/sys/netmpls/mpls_raw.c index f56bb5271e9..6fe684a9389 100644 --- a/sys/netmpls/mpls_raw.c +++ b/sys/netmpls/mpls_raw.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpls_raw.c,v 1.7 2010/07/15 13:30:45 claudio Exp $ */ +/* $OpenBSD: mpls_raw.c,v 1.8 2010/09/03 13:12:31 claudio Exp $ */ /* * Copyright (C) 1999, 2000 and 2001 AYAME Project, WIDE Project. @@ -55,7 +55,7 @@ u_long mpls_raw_sendspace = MPLS_RAW_SNDQ; u_long mpls_raw_recvspace = MPLS_RAW_RCVQ; int mpls_defttl = 255; -int mpls_inkloop = 16; +int mpls_inkloop = MPLS_INKERNEL_LOOP_MAX; int mpls_push_expnull_ip = 0; int mpls_push_expnull_ip6 = 0; int mpls_mapttl_ip = 1; |