1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-10 13:57:47 +03:00

r18991: Fix bug 4133 -- Thanks to Olaf Flebbe

(This used to be commit d8bea42bb78619ae35a9680b24fe9eee5f25997d)
This commit is contained in:
Volker Lendecke 2006-09-29 09:12:55 +00:00 committed by Gerald (Jerry) Carter
parent 31454d2e8b
commit 9f98bcf6a8

View File

@ -153,6 +153,13 @@ int rep_setegid(gid_t);
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);