Skip to content
Snippets Groups Projects
Commit dd0cd476 authored by Sean Bright's avatar Sean Bright
Browse files

Const-ify a string, fix a log message, and use the correct signature for the

load_module function.


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@195210 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 80bdf0f5
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") ...@@ -53,7 +53,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
AST_THREADSTORAGE(custom_buf); AST_THREADSTORAGE(custom_buf);
static char *name = "cdr-custom"; static const char name[] = "cdr-custom";
struct cdr_config { struct cdr_config {
AST_DECLARE_STRING_FIELDS( AST_DECLARE_STRING_FIELDS(
...@@ -84,7 +84,7 @@ static int load_config(void) ...@@ -84,7 +84,7 @@ static int load_config(void)
cfg = ast_config_load(CONFIG, config_flags); cfg = ast_config_load(CONFIG, config_flags);
if (!cfg || cfg == CONFIG_STATUS_FILEINVALID) { if (!cfg || cfg == CONFIG_STATUS_FILEINVALID) {
ast_log(LOG_ERROR, "Unable to load " CONFIG ". Not custom CSV CDRs.\n"); ast_log(LOG_ERROR, "Unable to load " CONFIG ". Not logging custom CSV CDRs.\n");
return -1; return -1;
} }
...@@ -177,7 +177,7 @@ static int unload_module(void) ...@@ -177,7 +177,7 @@ static int unload_module(void)
return 0; return 0;
} }
static int load_module(void) static enum ast_module_load_result load_module(void)
{ {
if (AST_RWLIST_WRLOCK(&sinks)) { if (AST_RWLIST_WRLOCK(&sinks)) {
ast_log(LOG_ERROR, "Unable to lock sink list. Load failed.\n"); ast_log(LOG_ERROR, "Unable to lock sink list. Load failed.\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment