summaryrefslogtreecommitdiffstats
path: root/source3/lib/netapi/netapi.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2010-11-24 18:04:02 +1100
committerAndrew Bartlett <abartlet@samba.org>2010-11-24 09:21:05 +0100
commit6ead7fbae534b7cc25310d8ea2875fc2e737a2b7 (patch)
tree944c6deab4fc5709cf2c714ca23104092ff4ee93 /source3/lib/netapi/netapi.c
parent11b060d345a0fa8613d2f98b4e7199dbce0e1251 (diff)
downloadsamba-6ead7fbae534b7cc25310d8ea2875fc2e737a2b7.tar.gz
samba-6ead7fbae534b7cc25310d8ea2875fc2e737a2b7.tar.xz
samba-6ead7fbae534b7cc25310d8ea2875fc2e737a2b7.zip
s3-libnetapi Load case tables earlier
If we don't load the case tables as the 'first' thing we do, we will segfault on the first case insensitive string comparison. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Wed Nov 24 09:21:05 CET 2010 on sn-devel-104
Diffstat (limited to 'source3/lib/netapi/netapi.c')
-rw-r--r--source3/lib/netapi/netapi.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/lib/netapi/netapi.c b/source3/lib/netapi/netapi.c
index 4bb8004e1a4..9d76017a01a 100644
--- a/source3/lib/netapi/netapi.c
+++ b/source3/lib/netapi/netapi.c
@@ -67,14 +67,15 @@ NET_API_STATUS libnetapi_init(struct libnetapi_ctx **context)
#endif
frame = talloc_stackframe();
+ /* Case tables must be loaded before any string comparisons occour */
+ load_case_tables();
+
/* When libnetapi is invoked from an application, it does not
* want to be swamped with level 10 debug messages, even if
* this has been set for the server in smb.conf */
lp_set_cmdline("log level", "0");
setup_logging("libnetapi", DEBUG_STDERR);
- load_case_tables();
-
if (!lp_load(get_dyn_CONFIGFILE(), true, false, false, false)) {
TALLOC_FREE(frame);
fprintf(stderr, "error loading %s\n", get_dyn_CONFIGFILE() );