diff options
author | 2010-07-07 20:58:25 +0000 | |
---|---|---|
committer | 2010-07-07 20:58:25 +0000 | |
commit | ae187641045de849076ae5a52425a636ff0c0826 (patch) | |
tree | 151e3e92e10861e20d221d08395d6ddd25d2ff4a | |
parent | tag it (diff) | |
download | wireguard-openbsd-ae187641045de849076ae5a52425a636ff0c0826.tar.xz wireguard-openbsd-ae187641045de849076ae5a52425a636ff0c0826.zip |
Use correct function name in panic()
-rw-r--r-- | sys/netmpls/mpls_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netmpls/mpls_input.c b/sys/netmpls/mpls_input.c index 9b0231a6922..869406725a4 100644 --- a/sys/netmpls/mpls_input.c +++ b/sys/netmpls/mpls_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpls_input.c,v 1.27 2010/06/09 11:40:36 claudio Exp $ */ +/* $OpenBSD: mpls_input.c,v 1.28 2010/07/07 20:58:25 claudio Exp $ */ /* * Copyright (c) 2008 Claudio Jeker <claudio@openbsd.org> @@ -80,7 +80,7 @@ mplsintr(void) return; #ifdef DIAGNOSTIC if ((m->m_flags & M_PKTHDR) == 0) - panic("ipintr no HDR"); + panic("mplsintr no HDR"); #endif mpls_input(m); } |