aboutsummaryrefslogtreecommitdiffstats
path: root/tap-sipstat.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2009-02-02 19:03:29 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2009-02-02 19:03:29 +0000
commit0e6467a196fbb9727f866f343bc3a6c0ec4cdfb4 (patch)
tree07be17559aff49caee1762ef9901339b7faaba1c /tap-sipstat.c
parent30d59ce41dda4ca0e6deff926adb092a971d14ed (diff)
Actually display the minimum and maximum setup times, and split "setup"
and "time". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27354 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tap-sipstat.c')
-rw-r--r--tap-sipstat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tap-sipstat.c b/tap-sipstat.c
index c883d7a6ec..fecf1312d1 100644
--- a/tap-sipstat.c
+++ b/tap-sipstat.c
@@ -378,7 +378,7 @@ sipstat_draw(void *psp )
printf("\n* List of SIP Request methods\n");
g_hash_table_foreach( sp->hash_requests, (GHFunc)sip_draw_hash_requests,
" %-15s : %5d Packets\n");
- printf( "\n* Average setuptime %d ms\n Min %d ms\n Max %d ms\n", sp->average_setup_time);
+ printf( "\n* Average setup time %d ms\n Min %d ms\n Max %d ms\n", sp->average_setup_time, sp->min_setup_time, sp->max_setup_time);
printf("===================================================================\n");
}