diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-24 15:23:26 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-24 15:23:26 +0000 |
commit | 6c12035a999135fc06fdea5b6eb6f49b86c4b949 (patch) | |
tree | a67f7841b40bf39a09ee6b744c166d6372476ff6 /omfile.c | |
parent | 6d231d5f159703bb13a2505e6de6c820a3ca05bc (diff) | |
download | rsyslog-6c12035a999135fc06fdea5b6eb6f49b86c4b949.tar.gz rsyslog-6c12035a999135fc06fdea5b6eb6f49b86c4b949.tar.xz rsyslog-6c12035a999135fc06fdea5b6eb6f49b86c4b949.zip |
added freeInstance() call to output module interface; re-structured
ressource release code in syslogd.c
Diffstat (limited to 'omfile.c')
-rw-r--r-- | omfile.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -503,16 +503,15 @@ again: /* free an instance - * returns 0 if it succeeds, something else otherwise */ -rsRetVal freeInstanceFile(selector_t *f) +static rsRetVal freeInstance(selector_t *f) { assert(f != NULL); if(f->f_un.f_file.bDynamicName) { dynaFileFreeCache(f); } else close(f->f_file); - return 0; + return RS_RET_OK; } @@ -674,7 +673,7 @@ static rsRetVal queryEtryPt(uchar *name, rsRetVal (**pEtryPoint)()) } else if(!strcmp((char*) name, "isCompatibleWithFeature")) { *pEtryPoint = isCompatibleWithFeature; } else if(!strcmp((char*) name, "freeInstance")) { - *pEtryPoint = freeInstanceFile; + *pEtryPoint = freeInstance; } return(*pEtryPoint == NULL) ? RS_RET_NOT_FOUND : RS_RET_OK; |