svn commit: samba r10331 - in trunk/source/nsswitch: .

jra at samba.org jra at samba.org
Mon Sep 19 23:08:00 GMT 2005


Author: jra
Date: 2005-09-19 23:07:59 +0000 (Mon, 19 Sep 2005)
New Revision: 10331

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

Log:
Fixed missing arg in write_sock() call.
Jeremy.

Modified:
   trunk/source/nsswitch/wb_common.c


Changeset:
Modified: trunk/source/nsswitch/wb_common.c
===================================================================
--- trunk/source/nsswitch/wb_common.c	2005-09-19 22:01:57 UTC (rev 10330)
+++ trunk/source/nsswitch/wb_common.c	2005-09-19 23:07:59 UTC (rev 10331)
@@ -545,7 +545,7 @@
 	}
 
 	if ((request->extra_len != 0) &&
-	    (write_sock(request->extra_data, request->extra_len) == -1)) {
+	    (write_sock(request->extra_data, request->extra_len, request->flags & WBFLAG_RECURSE) == -1)) {
 		return NSS_STATUS_UNAVAIL;
 	}
 	



More information about the samba-cvs mailing list