diff options
author | 2017-06-06 13:07:22 +0000 | |
---|---|---|
committer | 2017-06-06 13:07:22 +0000 | |
commit | 8a2b09630d72aa8f735a04c8bc7cec3df6d26d54 (patch) | |
tree | 1a337df3e5cf7cc2ec4b5c57ff9cc7275bf94e83 | |
parent | Do not rely on <net/rtable.h> beeing included by other headers. (diff) | |
download | wireguard-openbsd-8a2b09630d72aa8f735a04c8bc7cec3df6d26d54.tar.xz wireguard-openbsd-8a2b09630d72aa8f735a04c8bc7cec3df6d26d54.zip |
Update panic strings, pipex no longer use rn_inithead0().
-rw-r--r-- | sys/net/pipex.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/pipex.c b/sys/net/pipex.c index 00508517f7a..543d10f0cd3 100644 --- a/sys/net/pipex.c +++ b/sys/net/pipex.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pipex.c,v 1.101 2017/05/30 07:50:37 mpi Exp $ */ +/* $OpenBSD: pipex.c,v 1.102 2017/06/06 13:07:22 mpi Exp $ */ /*- * Copyright (c) 2009 Internet Initiative Japan Inc. @@ -153,12 +153,12 @@ pipex_iface_init(struct pipex_iface_context *pipex_iface, struct ifnet *ifp) if (pipex_rd_head4 == NULL) { if (!rn_inithead((void **)&pipex_rd_head4, offsetof(struct sockaddr_in, sin_addr))) - panic("rn_inithead0() failed on pipex_init()"); + panic("rn_inithead() failed on pipex_init()"); } if (pipex_rd_head6 == NULL) { if (!rn_inithead((void **)&pipex_rd_head6, offsetof(struct sockaddr_in6, sin6_addr))) - panic("rn_inithead0() failed on pipex_init()"); + panic("rn_inithead() failed on pipex_init()"); } /* virtual pipex_session entry for multicast */ |