summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2003-03-03 19:52:27 +0000
committerJeremy Allison <jra@samba.org>2003-03-03 19:52:27 +0000
commit8ce11aee9169298021927cb09a117e7008c0b687 (patch)
tree4991ae37ddc1c0169a2533fe3d025abe76eb04a1
parentcc7f40f4b7c090e73f7cd54e89e3927c8bff0004 (diff)
downloadsamba-8ce11aee9169298021927cb09a117e7008c0b687.tar.gz
samba-8ce11aee9169298021927cb09a117e7008c0b687.tar.bz2
samba-8ce11aee9169298021927cb09a117e7008c0b687.zip
dlysym takes a const char *.
Jeremy. (This used to be commit 54e5413a9267b7279cbde0ec129478a5a9c3116c)
-rw-r--r--source3/lib/system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/system.c b/source3/lib/system.c
index 18cccda935..6ff97b88da 100644
--- a/source3/lib/system.c
+++ b/source3/lib/system.c
@@ -1192,7 +1192,7 @@ void *sys_dlopen(const char *name, int flags)
#endif
}
-void *sys_dlsym(void *handle, char *symbol)
+void *sys_dlsym(void *handle, const char *symbol)
{
#if defined(HAVE_DLSYM)
return dlsym(handle, symbol);