X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fmodules%2Frssclient%2Frss_atom_parser.c;h=bed68587c54d8f905628fabc473be65cf700dd5c;hb=67d954e97ccee1cd9c9ae8a969eece1383a04d46;hp=e86d30b84f778bb14fd7203d24c54324ee332c62;hpb=4ce1695b8f1f04cdbfb0af09b902859259d9918d;p=citadel.git diff --git a/citadel/modules/rssclient/rss_atom_parser.c b/citadel/modules/rssclient/rss_atom_parser.c index e86d30b84..bed68587c 100644 --- a/citadel/modules/rssclient/rss_atom_parser.c +++ b/citadel/modules/rssclient/rss_atom_parser.c @@ -679,7 +679,7 @@ shutdown: } -void rss_cleanup(void) +void rss_parser_cleanup(void) { DeleteHash(&StartHandlers); DeleteHash(&EndHandlers); @@ -773,7 +773,7 @@ CTDL_MODULE_INIT(rssparser) /* we don't like these namespaces because of they shadow our usefull parameters. */ Put(KnownNameSpaces, HKEY("http://search.yahoo.com/mrss/"), NULL, reference_free_handler); #endif - CtdlRegisterCleanupHook(rss_cleanup); + CtdlRegisterCleanupHook(rss_parser_cleanup); } return "rssparser"; }