Skip to content

Commit 7584142

Browse files
riastradhriastradh
riastradh
authored and
riastradh
committed
wg(4): Fix thinko in previous. Should unbreak the rump build.
PR kern/58938: wg tunnel dies after a few days
1 parent a7ccc9e commit 7584142

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sys/net/if_wg.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $NetBSD: if_wg.c,v 1.134 2024/12/27 15:55:19 riastradh Exp $ */
1+
/* $NetBSD: if_wg.c,v 1.135 2024/12/27 16:42:28 riastradh Exp $ */
22

33
/*
44
* Copyright (C) Ryota Ozaki <[email protected]>
@@ -43,7 +43,7 @@
4343
*/
4444

4545
#include <sys/cdefs.h>
46-
__KERNEL_RCSID(0, "$NetBSD: if_wg.c,v 1.134 2024/12/27 15:55:19 riastradh Exp $");
46+
__KERNEL_RCSID(0, "$NetBSD: if_wg.c,v 1.135 2024/12/27 16:42:28 riastradh Exp $");
4747

4848
#ifdef _KERNEL_OPT
4949
#include "opt_altq_enabled.h"
@@ -5497,7 +5497,7 @@ wg_send_hs_user(struct wg_peer *wgp, struct mbuf *m)
54975497
}
54985498

54995499
static int
5500-
wg_send_hs_data(struct wg_peer *wgp, struct mbuf *m)
5500+
wg_send_data_user(struct wg_peer *wgp, struct mbuf *m)
55015501
{
55025502

55035503
return wg_send_user(wgp, m, /*handshake*/false);

0 commit comments

Comments
 (0)