svn commit: samba r7423 - branches/SAMBA_3_0/source/nsswitch trunk/source/nsswitch

vlendec at samba.org vlendec at samba.org
Thu Jun 9 07:45:30 GMT 2005


Author: vlendec
Date: 2005-06-09 07:45:29 +0000 (Thu, 09 Jun 2005)
New Revision: 7423

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=7423

Log:
Fix the build on sol10
Modified:
   branches/SAMBA_3_0/source/nsswitch/winbindd_dual.c
   trunk/source/nsswitch/winbindd_dual.c


Changeset:
Modified: branches/SAMBA_3_0/source/nsswitch/winbindd_dual.c
===================================================================
--- branches/SAMBA_3_0/source/nsswitch/winbindd_dual.c	2005-06-09 07:28:21 UTC (rev 7422)
+++ branches/SAMBA_3_0/source/nsswitch/winbindd_dual.c	2005-06-09 07:45:29 UTC (rev 7423)
@@ -563,7 +563,7 @@
 	struct winbindd_cli_state state;
 	extern BOOL override_logfile;
 
-	if (socketpair(AF_LOCAL, SOCK_STREAM, 0, fdpair) != 0) {
+	if (socketpair(AF_UNIX, SOCK_STREAM, 0, fdpair) != 0) {
 		DEBUG(0, ("Could not open child pipe: %s\n",
 			  strerror(errno)));
 		return False;

Modified: trunk/source/nsswitch/winbindd_dual.c
===================================================================
--- trunk/source/nsswitch/winbindd_dual.c	2005-06-09 07:28:21 UTC (rev 7422)
+++ trunk/source/nsswitch/winbindd_dual.c	2005-06-09 07:45:29 UTC (rev 7423)
@@ -563,7 +563,7 @@
 	struct winbindd_cli_state state;
 	extern BOOL override_logfile;
 
-	if (socketpair(AF_LOCAL, SOCK_STREAM, 0, fdpair) != 0) {
+	if (socketpair(AF_UNIX, SOCK_STREAM, 0, fdpair) != 0) {
 		DEBUG(0, ("Could not open child pipe: %s\n",
 			  strerror(errno)));
 		return False;



More information about the samba-cvs mailing list