diff options
author | Lars Roland <Lars.Roland@gmx.net> | 2004-12-31 14:14:44 +0000 |
---|---|---|
committer | Lars Roland <Lars.Roland@gmx.net> | 2004-12-31 14:14:44 +0000 |
commit | fd39b4ddcafbc5aa7b28698359a5ab1b7164ecb0 (patch) | |
tree | d0160b15683fc2c996c18a967ae752a69d38e97f /tap-h225counter.c | |
parent | 43cf3c24802aee152d6a3cc21cc8a6bf16676219 (diff) | |
download | wireshark-fd39b4ddcafbc5aa7b28698359a5ab1b7164ecb0.tar.gz wireshark-fd39b4ddcafbc5aa7b28698359a5ab1b7164ecb0.tar.bz2 wireshark-fd39b4ddcafbc5aa7b28698359a5ab1b7164ecb0.zip |
Fix from Luis Ontanon:
Bring tap-h225counter.c in sync with newest revision of the h225 dissector
svn path=/trunk/; revision=12901
Diffstat (limited to 'tap-h225counter.c')
-rw-r--r-- | tap-h225counter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tap-h225counter.c b/tap-h225counter.c index 2c8c44fc48..93773c69eb 100644 --- a/tap-h225counter.c +++ b/tap-h225counter.c @@ -364,7 +364,7 @@ h225counter_draw(void *phs) printf("Call Signalling:\n"); for(i=0;i<=CS_MSG_TYPES;i++) { if(hs->cs_msg[i]!=0) { - printf(" %s : %u\n", val_to_str(i,h323_message_body_vals,"unknown cs-messages "), hs->cs_msg[i]); + printf(" %s : %u\n", val_to_str(i,T_h323_message_body_vals,"unknown cs-messages "), hs->cs_msg[i]); /* reason counter */ switch(i) { case 5: /* ReleaseComplete */ |