Author: jhb
Date: Tue Jan 22 20:37:31 2013
New Revision: 245824
URL: http://svnweb.freebsd.org/changeset/base/245824

Log:
  Similar to r245823, use decimal constants for UNIX domain socket options.
  
  MFC after:    1 week

Modified:
  head/sys/sys/un.h

Modified: head/sys/sys/un.h
==============================================================================
--- head/sys/sys/un.h   Tue Jan 22 19:45:04 2013        (r245823)
+++ head/sys/sys/un.h   Tue Jan 22 20:37:31 2013        (r245824)
@@ -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
 
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to