summaryrefslogtreecommitdiff
path: root/source/lib
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2003-04-24 19:30:16 +0000
committerJelmer Vernooij <jelmer@samba.org>2003-04-24 19:30:16 +0000
commit9411e3336ebe781da2b418219dd5803fecfc42fe (patch)
tree8c1bf693798257ccdc7049d8b57cb5709cad814e /source/lib
parentce56ccf932e5ae89b7d46da31ec9b17551206491 (diff)
downloadsamba-9411e3336ebe781da2b418219dd5803fecfc42fe.tar.gz
Check for absolute paths by only checking the first character of the module name.
Don't use strchr_m, which caused race conditions.
Diffstat (limited to 'source/lib')
-rw-r--r--source/lib/module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/module.c b/source/lib/module.c
index 763a5c2b2d5..53223cfebe2 100644
--- a/source/lib/module.c
+++ b/source/lib/module.c
@@ -80,7 +80,7 @@ int smb_probe_module(const char *subsystem, const char *module)
pstring full_path;
/* Check for absolute path */
- if(strchr_m(module, '/'))return smb_load_module(module);
+ if(module[0] == '/')return smb_load_module(module);
pstrcpy(full_path, lib_path(subsystem));
pstrcat(full_path, "/");