diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-06-20 09:34:31 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-06-20 09:34:31 +0200 |
commit | 46ccc9e77f5e2ee3ded1ca79e973fafdc37e4c0f (patch) | |
tree | 8740339bdd1b50fea742814db1248a7fbf8ebd0d /runtime/obj.c | |
parent | 2cccec9a9ff5a5d1b0db6f869a525c4b3c601c33 (diff) | |
download | rsyslog-46ccc9e77f5e2ee3ded1ca79e973fafdc37e4c0f.tar.gz rsyslog-46ccc9e77f5e2ee3ded1ca79e973fafdc37e4c0f.tar.bz2 rsyslog-46ccc9e77f5e2ee3ded1ca79e973fafdc37e4c0f.zip |
milestone: module() can load module in legacy mode
Diffstat (limited to 'runtime/obj.c')
-rw-r--r-- | runtime/obj.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/obj.c b/runtime/obj.c index b2739c58..99621124 100644 --- a/runtime/obj.c +++ b/runtime/obj.c @@ -1151,7 +1151,7 @@ UseObj(char *srcFile, uchar *pObjName, uchar *pObjFile, interface_t *pIf) if(pObjFile == NULL) { FINALIZE; /* no chance, we have lost... */ } else { - CHKiRet(module.Load(pObjFile, 0)); + CHKiRet(module.Load(pObjFile, 0, NULL)); /* NOW, we must find it or we have a problem... */ CHKiRet(FindObjInfo(pStr, &pObjInfo)); } |