diff options
author | Olivier Biot <obiot.ethereal@gmail.com> | 2003-12-10 22:27:41 +0000 |
---|---|---|
committer | Olivier Biot <obiot.ethereal@gmail.com> | 2003-12-10 22:27:41 +0000 |
commit | e4a90970b8ec23ac89ac1e2766c354965d32ffc2 (patch) | |
tree | cfc966505eefc3806788214f61f149653a23a6ed /tap-wspstat.c | |
parent | 9fd657a0e1db145aa9733118ed09daaacf589edf (diff) | |
download | wireshark-e4a90970b8ec23ac89ac1e2766c354965d32ffc2.tar.gz wireshark-e4a90970b8ec23ac89ac1e2766c354965d32ffc2.tar.bz2 wireshark-e4a90970b8ec23ac89ac1e2766c354965d32ffc2.zip |
WSP status code is hexadecimal.
svn path=/trunk/; revision=9236
Diffstat (limited to 'tap-wspstat.c')
-rw-r--r-- | tap-wspstat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tap-wspstat.c b/tap-wspstat.c index 0ecff309fe..a9ddfd38b7 100644 --- a/tap-wspstat.c +++ b/tap-wspstat.c @@ -1,7 +1,7 @@ /* tap-rpcstat.c * wspstat 2003 Jean-Michel FAYARD * - * $Id: tap-wspstat.c,v 1.2 2003/11/27 22:15:05 guy Exp $ + * $Id: tap-wspstat.c,v 1.3 2003/12/10 22:27:41 obiot Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -201,7 +201,7 @@ wspstat_draw(void *psp) printf("\nStatus code in reply packets\n"); printf( "Status Code Packets Description\n"); g_hash_table_foreach( sp->hash, (GHFunc) wsp_print_statuscode, - "%11d %9d %s\n" ) ; + " 0x%02X %9d %s\n" ) ; printf("===================================================================\n"); } |