aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sbin/ipf/ippool/ippool.52
-rw-r--r--sys/net/route/route_ctl.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/sbin/ipf/ippool/ippool.5 b/sbin/ipf/ippool/ippool.5
index 6ead9f7fbf3f..1adda3822422 100644
--- a/sbin/ipf/ippool/ippool.5
+++ b/sbin/ipf/ippool/ippool.5
@@ -124,7 +124,7 @@ addresses from. To do this simply use a "file://" URL where you would
specify an actual IP address.
.PP
.nf
-pool ipf/tree (name rfc1918;) { file:///etc/ipf/rfc1918; };
+pool ipf/tree (name rfc1918;) { "file:///etc/ipf/rfc1918;" };
.fi
.PP
The contents of the file might look something like this:
diff --git a/sys/net/route/route_ctl.c b/sys/net/route/route_ctl.c
index fd09998d4a01..712e912189a5 100644
--- a/sys/net/route/route_ctl.c
+++ b/sys/net/route/route_ctl.c
@@ -106,10 +106,11 @@ SYSCTL_DECL(_net_route);
#define V_rib_route_multipath VNET(rib_route_multipath)
#ifdef ROUTE_MPATH
#define _MP_FLAGS CTLFLAG_RW
+VNET_DEFINE(u_int, rib_route_multipath) = 1;
#else
#define _MP_FLAGS CTLFLAG_RD
+VNET_DEFINE(u_int, rib_route_multipath) = 0;
#endif
-VNET_DEFINE(u_int, rib_route_multipath) = 1;
SYSCTL_UINT(_net_route, OID_AUTO, multipath, _MP_FLAGS | CTLFLAG_VNET,
&VNET_NAME(rib_route_multipath), 0, "Enable route multipath");
#undef _MP_FLAGS