projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
729620d
)
Make pbx_dundi compile again. Sorry. :(
author
Russell Bryant
<russell@russellbryant.com>
Sun, 5 Nov 2006 01:04:29 +0000
(
01:04
+0000)
committer
Russell Bryant
<russell@russellbryant.com>
Sun, 5 Nov 2006 01:04:29 +0000
(
01:04
+0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@47213
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
pbx/pbx_dundi.c
patch
|
blob
|
history
diff --git
a/pbx/pbx_dundi.c
b/pbx/pbx_dundi.c
index
5a0ca59
..
87a13af
100644
(file)
--- a/
pbx/pbx_dundi.c
+++ b/
pbx/pbx_dundi.c
@@
-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;