Similar to r245823, use decimal constants for UNIX domain socket options.

MFC after:	1 week
This commit is contained in:
jhb 2013-01-22 20:37:31 +00:00
parent e1b160d5be
commit 76aab083f3

View File

@ -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