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

MFC after:	1 week
This commit is contained in:
John Baldwin 2013-01-22 20:37:31 +00:00
parent 1d77fa5a26
commit 3a6df89b64

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