svn commit: samba r18991 - in branches: SAMBA_3_0/source/lib/replace SAMBA_4_0/source/lib/replace

vlendec at samba.org vlendec at samba.org
Fri Sep 29 09:12:55 GMT 2006


Author: vlendec
Date: 2006-09-29 09:12:55 +0000 (Fri, 29 Sep 2006)
New Revision: 18991

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

Log:
Fix bug 4133 -- Thanks to Olaf Flebbe
Modified:
   branches/SAMBA_3_0/source/lib/replace/replace.h
   branches/SAMBA_4_0/source/lib/replace/replace.h


Changeset:
Modified: branches/SAMBA_3_0/source/lib/replace/replace.h
===================================================================
--- branches/SAMBA_3_0/source/lib/replace/replace.h	2006-09-29 09:10:52 UTC (rev 18990)
+++ branches/SAMBA_3_0/source/lib/replace/replace.h	2006-09-29 09:12:55 UTC (rev 18991)
@@ -151,6 +151,13 @@
 void rep_setlinebuf(FILE *);
 #endif
 
+#ifndef HAVE_VSYSLOG
+#ifdef HAVE_SYSLOG
+#define vsyslog rep_vsyslog
+void rep_vsyslog (int facility_priority, char *format, va_list arglist);
+#endif
+#endif
+
 #ifndef HAVE_STRCASESTR
 #define strcasestr rep_strcasestr
 char *rep_strcasestr(const char *haystack, const char *needle);

Modified: branches/SAMBA_4_0/source/lib/replace/replace.h
===================================================================
--- branches/SAMBA_4_0/source/lib/replace/replace.h	2006-09-29 09:10:52 UTC (rev 18990)
+++ branches/SAMBA_4_0/source/lib/replace/replace.h	2006-09-29 09:12:55 UTC (rev 18991)
@@ -153,6 +153,13 @@
 void rep_setlinebuf(FILE *);
 #endif
 
+#ifndef HAVE_VSYSLOG
+#ifdef HAVE_SYSLOG
+#define vsyslog rep_vsyslog
+void rep_vsyslog (int facility_priority, char *format, va_list arglist);
+#endif
+#endif
+
 #ifndef HAVE_STRCASESTR
 #define strcasestr rep_strcasestr
 char *rep_strcasestr(const char *haystack, const char *needle);



More information about the samba-cvs mailing list