summaryrefslogtreecommitdiff
path: root/pbx/pbx_dundi.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-04-30 04:28:47 +0000
committerRussell Bryant <russell@russellbryant.com>2006-04-30 04:28:47 +0000
commitd9fa5f3c898a5585fa83c83f74f82723d5631a8a (patch)
tree93e2c3c9ae4ca9e113cdb1a49eca7cb93c3a47ae /pbx/pbx_dundi.c
parentc7fea723a36d1600fe626fd7a012b41a05bd626f (diff)
change a list traversal to use a for loop
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@23466 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx/pbx_dundi.c')
-rw-r--r--pbx/pbx_dundi.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/pbx/pbx_dundi.c b/pbx/pbx_dundi.c
index b80e9995b..00c04ab1c 100644
--- a/pbx/pbx_dundi.c
+++ b/pbx/pbx_dundi.c
@@ -4199,7 +4199,7 @@ static void build_peer(dundi_eid *eid, struct ast_variable *v, int *globalpcmode
if (peer->registerid > -1)
ast_sched_del(sched, peer->registerid);
peer->registerid = -1;
- while(v) {
+ for (; v; v = v->next) {
if (!strcasecmp(v->name, "inkey")) {
ast_copy_string(peer->inkey, v->value, sizeof(peer->inkey));
} else if (!strcasecmp(v->name, "outkey")) {
@@ -4281,7 +4281,6 @@ static void build_peer(dundi_eid *eid, struct ast_variable *v, int *globalpcmode
v->value, v->lineno);
}
}
- v = v->next;
}
(*globalpcmode) |= peer->pcmodel;
if (!peer->model && !peer->pcmodel) {