dect
/
asterisk
Archived
13
0
Fork 0

Fix major typo

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3066 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2004-05-25 04:50:54 +00:00
parent c57919ab72
commit 12562da80b
1 changed files with 1 additions and 1 deletions

View File

@ -476,7 +476,7 @@ struct ast_channel *ast_get_channel_by_name_locked(char *channame)
if (!strcasecmp(chan->name, channame))
return chan;
ast_mutex_unlock(&chan->lock);
chan = ast_channel_walk_locked(NULL);
chan = ast_channel_walk_locked(chan);
}
return NULL;
}