diff options
author | Jeremy Allison <jra@samba.org> | 2003-09-05 19:59:55 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-09-05 19:59:55 +0000 |
commit | f35e9a8b909d3c74be47083ccc4a4e91a14938db (patch) | |
tree | 94bec8e4eb1017cd886adae1518c8ffe2d47ee4f /source/passdb | |
parent | 3913e43724870c62a0d77ec3e73cbe9480cb6247 (diff) | |
download | samba-f35e9a8b909d3c74be47083ccc4a4e91a14938db.tar.gz samba-f35e9a8b909d3c74be47083ccc4a4e91a14938db.tar.xz samba-f35e9a8b909d3c74be47083ccc4a4e91a14938db.zip |
More tuning from cachegrind. Change most trim_string() calls to trim_char(0,
as that's what they do. Fix string_replace() to fast-path ascii.
Jeremy.
Diffstat (limited to 'source/passdb')
-rw-r--r-- | source/passdb/pdb_interface.c | 4 | ||||
-rw-r--r-- | source/passdb/pdb_plugin.c | 8 |
2 files changed, 7 insertions, 5 deletions
diff --git a/source/passdb/pdb_interface.c b/source/passdb/pdb_interface.c index 5ebc14030f0..d548081e78b 100644 --- a/source/passdb/pdb_interface.c +++ b/source/passdb/pdb_interface.c @@ -422,10 +422,10 @@ static NTSTATUS make_pdb_methods_name(struct pdb_methods **methods, struct pdb_c if (p) { *p = 0; module_location = p+1; - trim_string(module_location, " ", " "); + trim_char(module_location, ' ', ' '); } - trim_string(module_name, " ", " "); + trim_char(module_name, ' ', ' '); DEBUG(5,("Attempting to find an passdb backend to match %s (%s)\n", selected, module_name)); diff --git a/source/passdb/pdb_plugin.c b/source/passdb/pdb_plugin.c index ea67da23a55..027cd0b5d33 100644 --- a/source/passdb/pdb_plugin.c +++ b/source/passdb/pdb_plugin.c @@ -41,9 +41,11 @@ NTSTATUS pdb_init_plugin(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, con if (p) { *p = 0; plugin_location = p+1; - trim_string(plugin_location, " ", " "); - } else plugin_location = NULL; - trim_string(plugin_name, " ", " "); + trim_char(plugin_location, ' ', ' '); + } else { + plugin_location = NULL; + } + trim_char(plugin_name, ' ', ' '); DEBUG(5, ("Trying to load sam plugin %s\n", plugin_name)); dl_handle = sys_dlopen(plugin_name, RTLD_NOW ); |