From: Mark Spencer Date: Tue, 22 Apr 2003 19:20:06 +0000 (+0000) Subject: Fix tiny typo X-Git-Tag: 0.5.0~614 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=907980f17d51544ea73bbe94fb4af5c81a225dcc;p=thirdparty%2Fasterisk.git Fix tiny typo git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@882 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_local.c b/channels/chan_local.c index c8d4371e7b..69ed0c9b62 100755 --- a/channels/chan_local.c +++ b/channels/chan_local.c @@ -236,7 +236,7 @@ static int local_hangup(struct ast_channel *ast) while(cur) { if (cur == p) { if (prev) - prev->next == cur->next; + prev->next = cur->next; else locals = cur->next; break;