svn commit: samba r19440 - in branches/SAMBA_4_0/source/lib/replace: .

tridge at samba.org tridge at samba.org
Sat Oct 21 09:42:47 GMT 2006


Author: tridge
Date: 2006-10-21 09:42:46 +0000 (Sat, 21 Oct 2006)
New Revision: 19440

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

Log:

merged from samba3

Modified:
   branches/SAMBA_4_0/source/lib/replace/dlfcn.c


Changeset:
Modified: branches/SAMBA_4_0/source/lib/replace/dlfcn.c
===================================================================
--- branches/SAMBA_4_0/source/lib/replace/dlfcn.c	2006-10-21 09:38:16 UTC (rev 19439)
+++ branches/SAMBA_4_0/source/lib/replace/dlfcn.c	2006-10-21 09:42:46 UTC (rev 19440)
@@ -26,28 +26,28 @@
 #include "replace.h"
 
 #ifndef HAVE_DLOPEN
-void *dlopen(const char *name, int flags)
+void *rep_dlopen(const char *name, int flags)
 {
 	return NULL;
 }
 #endif
 
 #ifndef HAVE_DLSYM
-void *dlsym(void *handle, const char *symbol)
+void *rep_dlsym(void *handle, const char *symbol)
 {
     return NULL;
 }
 #endif
 
 #ifndef HAVE_DLERROR
-char *dlerror(void)
+char *rep_dlerror(void)
 {
 	return "dynamic loading of objects not supported on this platform";
 }
 #endif
 
 #ifndef HAVE_DLCLOSE
-int dlclose(void *handle)
+int rep_dlclose(void *handle)
 {
 	return 0;
 }



More information about the samba-cvs mailing list