dect
/
asterisk
Archived
13
0
Fork 0

Fix inband priindication checking in chan_zap.c

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3841 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
citats 2004-09-26 18:16:06 +00:00
parent 86deca3cff
commit d71b2c725a
1 changed files with 1 additions and 1 deletions

View File

@ -9460,7 +9460,7 @@ static int setup_zap(void)
} else if (!strcasecmp(v->name, "priindication")) {
if (!strcasecmp(v->value, "outofband"))
priindication_oob = 1;
else if (!strcasecmp(v->name, "inband"))
else if (!strcasecmp(v->value, "inband"))
priindication_oob = 0;
else
ast_log(LOG_WARNING, "'%s' is not a valid pri indication value, should be 'inband' or 'outofband' at line %d\n",