summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2006-11-30 03:29:42 +0000
committerJoshua Colp <jcolp@digium.com>2006-11-30 03:29:42 +0000
commitbf9a5e1dee07d66a6eaca55df58328d425b8bf28 (patch)
tree27a9c8d1bb6a120c66a58d084f238256af4461cd
parent1cc4009bc60f37fc49454856abc31beb0edd136c (diff)
I am pretty sure that oej only meant to change the variable name in the source, not the configuration option name so let's turn it back to srvlookup instead of global_srvlookup. (issue #8442 reported by jtodd)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48123 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--channels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 3c0cb2102..388ed7676 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -16308,7 +16308,7 @@ static int reload_config(enum channelreloadreason reason)
autocreatepeer = ast_true(v->value);
} else if (!strcasecmp(v->name, "match_auth_username")) {
global_match_auth_username = ast_true(v->value);
- } else if (!strcasecmp(v->name, "global_srvlookup")) {
+ } else if (!strcasecmp(v->name, "srvlookup")) {
global_srvlookup = ast_true(v->value);
} else if (!strcasecmp(v->name, "pedantic")) {
pedanticsipchecking = ast_true(v->value);