diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-03-31 15:06:34 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-03-31 15:06:34 +0000 |
commit | aa36f462d95f8a3a3a81a89c210b98a6f9fd295f (patch) | |
tree | 1a6a930f5bd925a8bc3de2e985fcb78aae35b071 /source/lib/module.c | |
parent | 9cc17bcfe633496ba6270fd82963ff768ae017b0 (diff) | |
download | samba-aa36f462d95f8a3a3a81a89c210b98a6f9fd295f.tar.gz samba-aa36f462d95f8a3a3a81a89c210b98a6f9fd295f.tar.xz samba-aa36f462d95f8a3a3a81a89c210b98a6f9fd295f.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)
Diffstat (limited to 'source/lib/module.c')
-rw-r--r-- | source/lib/module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/module.c b/source/lib/module.c index e400945a8bd..700de56953e 100644 --- a/source/lib/module.c +++ b/source/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); |