dect
/
asterisk
Archived
13
0
Fork 0

Make pbx_dundi compile again. Sorry. :(

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@47213 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2006-11-05 01:04:29 +00:00
parent c6cc3e8d03
commit 7fe9db16b5
1 changed files with 5 additions and 3 deletions

View File

@ -4506,7 +4506,10 @@ static int unload_module(void)
static int reload(void)
{
struct sockaddr_in sin;
set_config("dundi.conf",&sin);
if (set_config("dundi.conf", &sin))
return -1;
return 0;
}
@ -4549,8 +4552,7 @@ static int load_module(void)
if (setsockopt(netsocket, IPPROTO_IP, IP_TOS, &tos, sizeof(tos)))
ast_log(LOG_WARNING, "Unable to set TOS to %d\n", tos);
res = start_network_thread();
if (res) {
if (start_network_thread()) {
ast_log(LOG_ERROR, "Unable to start network thread\n");
close(netsocket);
return AST_MODULE_LOAD_FAILURE;