]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Remove ancient copy/paste error (issue #5541)
authorRussell Bryant <russell@russellbryant.com>
Tue, 1 Nov 2005 01:32:58 +0000 (01:32 +0000)
committerRussell Bryant <russell@russellbryant.com>
Tue, 1 Nov 2005 01:32:58 +0000 (01:32 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@6921 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_iax2.c

index d9498d26ad8ed9aef8d0ffb696bca9066f8deeed..b1756efb36029caa3269c22340bdef65acd53af0 100755 (executable)
@@ -2947,9 +2947,6 @@ static unsigned int calc_fakestamp(struct chan_iax2_pvt *p1, struct chan_iax2_pv
                (1000000 + p1->rxcore.tv_usec - p2->offset.tv_usec) / 1000 - 1000;
        fakets += ms;
 
-       /* FIXME? SLD would rather remove this and leave it to the end system to deal with */
-       if (fakets <= p2->lastsent)
-               fakets = p2->lastsent + 1;
        p2->lastsent = fakets;
        return fakets;
 }