runtime/shutdown mixed up

This commit is contained in:
Mathieu Rene 2010-10-11 13:42:58 -04:00
parent 57cd1c9850
commit c0fddf054c
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@
SWITCH_MODULE_LOAD_FUNCTION(mod_redis_load);
SWITCH_MODULE_SHUTDOWN_FUNCTION(mod_redis_shutdown);
SWITCH_MODULE_DEFINITION(mod_redis, mod_redis_load, NULL, mod_redis_shutdown);
SWITCH_MODULE_DEFINITION(mod_redis, mod_redis_load, mod_redis_shutdown, NULL);
static struct{
char *host;