aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/sys/un.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/un.h b/sys/sys/un.h
index 1f4731e6e810..6ab84748bbdf 100644
--- a/sys/sys/un.h
+++ b/sys/sys/un.h
@@ -53,9 +53,9 @@ struct sockaddr_un {
#if __BSD_VISIBLE
/* Socket options. */
-#define LOCAL_PEERCRED 0x001 /* retrieve peer credentials */
-#define LOCAL_CREDS 0x002 /* pass credentials to receiver */
-#define LOCAL_CONNWAIT 0x004 /* connects block until accepted */
+#define LOCAL_PEERCRED 1 /* retrieve peer credentials */
+#define LOCAL_CREDS 2 /* pass credentials to receiver */
+#define LOCAL_CONNWAIT 4 /* connects block until accepted */
#ifndef _KERNEL