]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Eliminate odd initialization of probation variable.
authorMark Michelson <mmichelson@digium.com>
Tue, 17 Jan 2012 17:22:07 +0000 (17:22 +0000)
committerMark Michelson <mmichelson@digium.com>
Tue, 17 Jan 2012 17:22:07 +0000 (17:22 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@351306 65c4cc65-6c06-0410-ace0-fbb531ad65f3

res/res_rtp_asterisk.c

index a7ec949e909a81461a9562ed45d6acadca1b6819..c283cdeac8a7752482533aa39111b466012e75da 100644 (file)
@@ -495,12 +495,10 @@ static void rtp_learning_seq_init(struct ast_rtp *rtp, uint16_t seq)
  */
 static int rtp_learning_rtp_seq_update(struct ast_rtp *rtp, uint16_t seq)
 {
-       int probation = 0;
+       int probation = 1;
 
        ast_debug(1, "%p -- probation = %d, seq = %d\n", rtp, rtp->learning_probation, seq);
 
-       probation = 1;
-
        if (seq == rtp->learning_max_seq + 1) {
                /* packet is in sequence */
                rtp->learning_probation--;