From 009b812d76d980cb165550ced3adb213585e9de0 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Fri, 21 Oct 2005 17:42:53 +0000 Subject: [PATCH] removed unused variable (issue #5455) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@6840 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_iax2.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c index ba619c36e0..d9498d26ad 100755 --- a/channels/chan_iax2.c +++ b/channels/chan_iax2.c @@ -6593,7 +6593,6 @@ static struct iax2_user *build_user(char *name, struct ast_variable *v) struct ast_ha *oldha = NULL; struct iax2_context *oldcon = NULL; int format; - int found; prev = NULL; ast_mutex_lock(&userl.lock); @@ -6606,7 +6605,6 @@ static struct iax2_user *build_user(char *name, struct ast_variable *v) user = user->next; } if (user) { - found++; oldha = user->ha; oldcon = user->contexts; user->ha = NULL;