]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
freetdm: fix typo in iostats command - print proper tx queue size and length
authorMoises Silva <moy@sangoma.com>
Wed, 3 Aug 2011 17:05:02 +0000 (13:05 -0400)
committerMoises Silva <moy@sangoma.com>
Wed, 3 Aug 2011 17:05:02 +0000 (13:05 -0400)
libs/freetdm/mod_freetdm/mod_freetdm.c

index 4e23fd74f5004a601536f60b658c3bc7ee3d6830..5117c6dbe8f33bb8801c431f2bfd6f1a8d772b20 100755 (executable)
@@ -4368,7 +4368,7 @@ static void exec_io_command(const char *cmd, switch_stream_handle_t *stream, ftd
                stream->write_function(stream, "Rx count: %lu\n", stats.rx.packets);
 
                stream->write_function(stream, "Tx errors: %u\n", stats.tx.errors);
-               stream->write_function(stream, "Tx queue len: %u\n", stats.tx.queue_len);
+               stream->write_function(stream, "Tx queue size: %u\n", stats.tx.queue_size);
                stream->write_function(stream, "Tx queue len: %u\n", stats.tx.queue_len);
                stream->write_function(stream, "Tx count: %lu\n", stats.tx.packets);
                stream->write_function(stream, "Tx idle: %u\n", stats.tx.idle_packets);