summaryrefslogtreecommitdiff
path: root/source3/lib/module.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2003-03-31 15:06:34 +0000
committerJelmer Vernooij <jelmer@samba.org>2003-03-31 15:06:34 +0000
commit96b5d5bdfdfe368cb1a84c9b25b2de97c1370af0 (patch)
treeedb63ef0afd4f42af8989f6d9a5c8e33967a79ff /source3/lib/module.c
parent8bb5a02f8c2dda5e6045bec37f7befe536042d11 (diff)
downloadsamba-96b5d5bdfdfe368cb1a84c9b25b2de97c1370af0.tar.gz
samba-96b5d5bdfdfe368cb1a84c9b25b2de97c1370af0.tar.bz2
samba-96b5d5bdfdfe368cb1a84c9b25b2de97c1370af0.zip
- Support absolute paths in vfs and charset modules
- Fix typo in Makefile.in - Fix compatibility with older vfs modules (from patch by metze) - Build some modules shared by default and some static (and fall back to static when dlopen() is not available) (This used to be commit aa36f462d95f8a3a3a81a89c210b98a6f9fd295f)
Diffstat (limited to 'source3/lib/module.c')
-rw-r--r--source3/lib/module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/module.c b/source3/lib/module.c
index e400945a8b..700de56953 100644
--- a/source3/lib/module.c
+++ b/source3/lib/module.c
@@ -132,7 +132,7 @@ void module_path_get_name(char *path, pstring name)
char *s;
/* First, make the path relative */
- s = strrchr_m(path, '/');
+ s = strrchr(path, '/');
if(s) pstrcpy(name, s+1);
else pstrcpy(name, path);