Diff for /mqtt/src/dl.c between versions 1.2.2.4 and 1.2.2.5

version 1.2.2.4, 2012/04/24 08:06:08 version 1.2.2.5, 2012/04/24 13:54:50
Line 53  mqttLoadRTLM(cfg_root_t *cfg, int modtype) Line 53  mqttLoadRTLM(cfg_root_t *cfg, int modtype)
                 return NULL;                  return NULL;
         }          }
   
        rtlm = dlopen(str, RTLD_LAZY);        rtlm = dlopen(str, RTLD_NOW);
         if (!rtlm) {          if (!rtlm) {
                 mqttLog("Error:: RTL module %s not found %s\n", str, dlerror());                  mqttLog("Error:: RTL module %s not found %s\n", str, dlerror());
                 return NULL;                  return NULL;

Removed from v.1.2.2.4  
changed lines
  Added in v.1.2.2.5


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>