diff options
author | Olaf Flebbe <o.flebbe@science-computing.de> | 2010-05-11 11:30:04 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-05-12 07:15:07 +0200 |
commit | d5c3db6f8873fc9e1b30f982206f337892cc962f (patch) | |
tree | 4e6434118f77892df94b59a636863a99092e19de /source4/lib | |
parent | 70f707c2196aa503909678dd891ab4b249f1241e (diff) | |
download | samba-d5c3db6f8873fc9e1b30f982206f337892cc962f.tar.gz samba-d5c3db6f8873fc9e1b30f982206f337892cc962f.tar.bz2 samba-d5c3db6f8873fc9e1b30f982206f337892cc962f.zip |
work around AIX6.1 name space pollution rename mod_name to module_name
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/com/tables.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/lib/com/tables.c b/source4/lib/com/tables.c index ed21da7cd8..f56e1c3f18 100644 --- a/source4/lib/com/tables.c +++ b/source4/lib/com/tables.c @@ -51,16 +51,16 @@ static struct IUnknown *get_com_class_running(const struct GUID *clsid) static struct IUnknown *get_com_class_so(TALLOC_CTX *mem_ctx, const struct GUID *clsid) { - char *mod_name; + char *module_name; char *clsid_str; void *mod; get_class_object_function f; clsid_str = GUID_string(mem_ctx, clsid); - mod_name = talloc_asprintf(mem_ctx, "%s.so", clsid_str); + module_name = talloc_asprintf(mem_ctx, "%s.so", clsid_str); talloc_free(clsid_str); - mod = dlopen(mod_name, 0); + mod = dlopen(module_name, 0); if (!mod) { return NULL; |