Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/net wg: Fix indentation. No functional change.



details:   https://anonhg.NetBSD.org/src/rev/2bb9f6989167
branches:  trunk
changeset: 938054:2bb9f6989167
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Mon Aug 31 20:25:33 2020 +0000

description:
wg: Fix indentation.  No functional change.

diffstat:

 sys/net/if_wg.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r d6f180c8e73f -r 2bb9f6989167 sys/net/if_wg.c
--- a/sys/net/if_wg.c   Mon Aug 31 20:25:11 2020 +0000
+++ b/sys/net/if_wg.c   Mon Aug 31 20:25:33 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_wg.c,v 1.40 2020/08/31 20:25:11 riastradh Exp $     */
+/*     $NetBSD: if_wg.c,v 1.41 2020/08/31 20:25:33 riastradh Exp $     */
 
 /*
  * Copyright (C) Ryota Ozaki <ozaki.ryota%gmail.com@localhost>
@@ -41,7 +41,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_wg.c,v 1.40 2020/08/31 20:25:11 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_wg.c,v 1.41 2020/08/31 20:25:33 riastradh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_inet.h"
@@ -587,7 +587,7 @@
        volatile unsigned int   wgp_tasks;
 #define WGP_TASK_SEND_INIT_MESSAGE             __BIT(0)
 #define WGP_TASK_ENDPOINT_CHANGED              __BIT(1)
-#define WGP_TASK_SEND_KEEPALIVE_MESSAGE        __BIT(2)
+#define WGP_TASK_SEND_KEEPALIVE_MESSAGE                __BIT(2)
 #define WGP_TASK_DESTROY_PREV_SESSION          __BIT(3)
 };
 



Home | Main Index | Thread Index | Old Index