summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2015-12-02 13:45:08 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2015-12-02 13:45:08 +0000
commitbc2261f553b86620100a21f62c8bf8dbc3b4f517 (patch)
tree4c50d1de45981e183ea22e61ffb9f286bb0b15c1 /sys
parentc092d99e62559b463c40825beab9aa287144bd0f (diff)
Oups, forgot in the tedu of RT_REPORT commit
Diffstat (limited to 'sys')
-rw-r--r--sys/netmpls/mpls_input.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netmpls/mpls_input.c b/sys/netmpls/mpls_input.c
index ab18cdf4981..51b81419a2b 100644
--- a/sys/netmpls/mpls_input.c
+++ b/sys/netmpls/mpls_input.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mpls_input.c,v 1.52 2015/12/02 08:47:00 claudio Exp $ */
+/* $OpenBSD: mpls_input.c,v 1.53 2015/12/02 13:45:07 claudio Exp $ */
/*
* Copyright (c) 2008 Claudio Jeker <claudio@openbsd.org>
@@ -156,7 +156,7 @@ do_v6:
}
}
- rt = rtalloc(smplstosa(smpls), RT_REPORT|RT_RESOLVE, 0);
+ rt = rtalloc(smplstosa(smpls), RT_RESOLVE, 0);
if (rt == NULL) {
/* no entry for this label */
#ifdef MPLS_DEBUG
@@ -372,7 +372,7 @@ mpls_do_error(struct mbuf *m, int type, int code, int destmtu)
smpls->smpls_len = sizeof(*smpls);
smpls->smpls_label = shim->shim_label & MPLS_LABEL_MASK;
- rt = rtalloc(smplstosa(smpls), RT_REPORT|RT_RESOLVE, 0);
+ rt = rtalloc(smplstosa(smpls), RT_RESOLVE, 0);
if (rt == NULL) {
/* no entry for this label */
m_freem(m);