Changeset 478 for vendor/current/source4


Ignore:
Timestamp:
Aug 2, 2010, 6:40:21 PM (15 years ago)
Author:
Silvan Scherrer
Message:

Samba 3.5: vendor update to 3.5.4

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source4/lib/com/tables.c

    r414 r478  
    5252static struct IUnknown *get_com_class_so(TALLOC_CTX *mem_ctx, const struct GUID *clsid)
    5353{
    54         char *mod_name;
     54        char *module_name;
    5555        char *clsid_str;
    5656        void *mod;
     
    5858
    5959        clsid_str = GUID_string(mem_ctx, clsid);
    60         mod_name = talloc_asprintf(mem_ctx, "%s.so", clsid_str);
     60        module_name = talloc_asprintf(mem_ctx, "%s.so", clsid_str);
    6161        talloc_free(clsid_str);
    6262
    63         mod = dlopen(mod_name, 0);
     63        mod = dlopen(module_name, 0);
    6464
    6565        if (!mod) {
Note: See TracChangeset for help on using the changeset viewer.