]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 304242 via svnmerge from
authorMark Michelson <mmichelson@digium.com>
Wed, 26 Jan 2011 21:02:10 +0000 (21:02 +0000)
committerMark Michelson <mmichelson@digium.com>
Wed, 26 Jan 2011 21:02:10 +0000 (21:02 +0000)
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r304242 | mmichelson | 2011-01-26 14:38:37 -0600 (Wed, 26 Jan 2011) | 3 lines

  Get rid of unused 'verbose' field in ast_udptl
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.2@304250 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/udptl.c

index d120c27fbf871a0a8ba7fc8bd1f42eb0b6baa56d..df462c3c64bbd8d8b2243c2f7f1ef4f171efee03 100644 (file)
@@ -170,8 +170,6 @@ struct ast_udptl {
         */
        int local_max_ifp;
 
-       int verbose;
-
        struct sockaddr_in far;
 
        unsigned int tx_seq_no;
@@ -630,9 +628,6 @@ static int udptl_build_packet(struct ast_udptl *s, uint8_t *buf, unsigned int bu
                break;
        }
 
-       if (s->verbose)
-               fprintf(stderr, "\n");
-
        s->tx_seq_no++;
        return len;
 }