Replace tab by space after #define in PR_* definitions.
authormvs <mvs@openbsd.org>
Tue, 16 May 2023 19:44:55 +0000 (19:44 +0000)
committermvs <mvs@openbsd.org>
Tue, 16 May 2023 19:44:55 +0000 (19:44 +0000)
ok bluhm@

sys/sys/protosw.h

index d96fe61..0456d32 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: protosw.h,v 1.60 2023/05/16 19:36:00 mvs Exp $        */
+/*     $OpenBSD: protosw.h,v 1.61 2023/05/16 19:44:55 mvs Exp $        */
 /*     $NetBSD: protosw.h,v 1.10 1996/04/09 20:55:32 cgd Exp $ */
 
 /*-
@@ -115,23 +115,23 @@ struct protosw {
        int     (*pr_sysctl)(int *, u_int, void *, size_t *, void *, size_t);
 };
 
-#define        PR_SLOWHZ       2               /* 2 slow timeouts per second */
-#define        PR_FASTHZ       5               /* 5 fast timeouts per second */
+#define PR_SLOWHZ      2               /* 2 slow timeouts per second */
+#define PR_FASTHZ      5               /* 5 fast timeouts per second */
 
 /*
  * Values for pr_flags.
  * PR_ADDR requires PR_ATOMIC;
  * PR_ADDR and PR_CONNREQUIRED are mutually exclusive.
  */
-#define        PR_ATOMIC       0x0001          /* exchange atomic messages only */
-#define        PR_ADDR         0x0002          /* addresses given with messages */
-#define        PR_CONNREQUIRED 0x0004          /* connection required by protocol */
-#define        PR_WANTRCVD     0x0008          /* want PRU_RCVD calls */
-#define        PR_RIGHTS       0x0010          /* passes capabilities */
-#define        PR_ABRTACPTDIS  0x0020          /* abort on accept(2) to disconnected
+#define PR_ATOMIC      0x0001          /* exchange atomic messages only */
+#define PR_ADDR                0x0002          /* addresses given with messages */
+#define PR_CONNREQUIRED        0x0004          /* connection required by protocol */
+#define PR_WANTRCVD    0x0008          /* want PRU_RCVD calls */
+#define PR_RIGHTS      0x0010          /* passes capabilities */
+#define PR_ABRTACPTDIS 0x0020          /* abort on accept(2) to disconnected
                                           socket */
-#define        PR_SPLICE       0x0040          /* socket splicing is possible */
-#define        PR_MPSYSCTL     0x0080          /* (*pr_sysctl)() doesn't require
+#define PR_SPLICE      0x0040          /* socket splicing is possible */
+#define PR_MPSYSCTL    0x0080          /* (*pr_sysctl)() doesn't require
                                           kernel lock */
 
 /*