Fix a spelling error in a log message. SMDI, not SDMI.

(closes issue #10959)


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@85517 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.4
Russell Bryant 18 years ago
parent c27db984f9
commit 9723b7d878

@ -719,8 +719,8 @@ static int load_module(void)
if (res < 0) {
return res;
} else if (res == 1) {
ast_log(LOG_WARNING, "No SMDI interfaces are available to listen on, not starting SDMI listener.\n");
return AST_MODULE_LOAD_DECLINE;;
ast_log(LOG_WARNING, "No SMDI interfaces are available to listen on, not starting SMDI listener.\n");
return AST_MODULE_LOAD_DECLINE;
} else
return 0;
}

Loading…
Cancel
Save