diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-09-24 18:31:22 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-09-24 18:31:22 +0200 |
commit | be26632b1e269652992ae6f336c5dd7e2dbec7ab (patch) | |
tree | 5cc36bcf7b227cc392cd19859ab90bd3d24aa920 /runtime/modules.c | |
parent | 63f41c3efe5d77afbb28d17e00eeae77061b15a5 (diff) | |
download | rsyslog-be26632b1e269652992ae6f336c5dd7e2dbec7ab.tar.gz rsyslog-be26632b1e269652992ae6f336c5dd7e2dbec7ab.tar.bz2 rsyslog-be26632b1e269652992ae6f336c5dd7e2dbec7ab.zip |
PoC: optimize omdicard --> STOP
Diffstat (limited to 'runtime/modules.c')
-rw-r--r-- | runtime/modules.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/modules.c b/runtime/modules.c index d3c51e90..f580e58e 100644 --- a/runtime/modules.c +++ b/runtime/modules.c @@ -313,7 +313,8 @@ finalize_it: /* get the name of a module */ -static uchar *modGetName(modInfo_t *pThis) +uchar +*modGetName(modInfo_t *pThis) { return((pThis->pszName == NULL) ? (uchar*) "" : pThis->pszName); } |