summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2005-06-09 07:45:29 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:57:09 -0500
commitd197ddd4c331d12c6b1d4d582a37c49768cba856 (patch)
tree7c932d178f7e9a260a55aaba396ba4aeaefdc64d
parentfed660877c16562265327c6093ea645cf4176b5c (diff)
downloadsamba-d197ddd4c331d12c6b1d4d582a37c49768cba856.tar.gz
samba-d197ddd4c331d12c6b1d4d582a37c49768cba856.tar.bz2
samba-d197ddd4c331d12c6b1d4d582a37c49768cba856.zip
r7423: Fix the build on sol10
(This used to be commit e8fde1bd92e8b19c8b5ce22f92cb048de773be1c)
-rw-r--r--source3/nsswitch/winbindd_dual.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd_dual.c b/source3/nsswitch/winbindd_dual.c
index f8b802dafa..e1ed2d6763 100644
--- a/source3/nsswitch/winbindd_dual.c
+++ b/source3/nsswitch/winbindd_dual.c
@@ -563,7 +563,7 @@ static BOOL fork_domain_child(struct winbindd_child *child)
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;