svn commit: samba r16133 - in branches/tmp/vl-messaging/source/param: .

ab at samba.org ab at samba.org
Sat Jun 10 08:28:19 GMT 2006


Author: ab
Date: 2006-06-10 08:28:18 +0000 (Sat, 10 Jun 2006)
New Revision: 16133

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

Log:
Fix defaults for default messaging type selection
Modified:
   branches/tmp/vl-messaging/source/param/loadparm.c


Changeset:
Modified: branches/tmp/vl-messaging/source/param/loadparm.c
===================================================================
--- branches/tmp/vl-messaging/source/param/loadparm.c	2006-06-09 22:41:26 UTC (rev 16132)
+++ branches/tmp/vl-messaging/source/param/loadparm.c	2006-06-10 08:28:18 UTC (rev 16133)
@@ -1621,7 +1621,13 @@
 	string_set(&Globals.szTemplateShell, "/bin/false");
 	string_set(&Globals.szTemplateHomedir, "/home/%D/%U");
 	string_set(&Globals.szWinbindSeparator, "\\");
+#if defined(WITH_TDB_MESSAGING)
 	Globals.iMsgType = MESSAGING_TYPE_TDB;
+#elif defined(WITH_DGRAM_MESSAGING)
+	Globals.iMsgType = MESSAGING_TYPE_DGRAM;
+#elif defined(WITH_STREAM_MESSAGING)
+	Globals.iMsgType = MESSAGING_TYPE_STREAM;
+#endif /* WITH_..._MESSAGING */
 	string_set(&Globals.szCupsServer, "");
 	string_set(&Globals.szIPrintServer, "");
 



More information about the samba-cvs mailing list