summaryrefslogtreecommitdiff
path: root/tap-sipstat.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2009-02-02 19:03:29 +0000
committerGuy Harris <guy@alum.mit.edu>2009-02-02 19:03:29 +0000
commit9f9566e6f39b5006e2299a0d3db4cbce8401f675 (patch)
tree07be17559aff49caee1762ef9901339b7faaba1c /tap-sipstat.c
parent3a4903b71aa0a628db7b63806bb51a7c146ba5d0 (diff)
downloadwireshark-9f9566e6f39b5006e2299a0d3db4cbce8401f675.tar.gz
Actually display the minimum and maximum setup times, and split "setup"
and "time". svn path=/trunk/; revision=27354
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");
}