diff options
author | Tomas Kukosa <tomas.kukosa@siemens.com> | 2007-10-05 07:44:03 +0000 |
---|---|---|
committer | Tomas Kukosa <tomas.kukosa@siemens.com> | 2007-10-05 07:44:03 +0000 |
commit | e461d0d0e8dbad79f7f01249512982e951ad5e97 (patch) | |
tree | 4ace4f92d60c78b61379a93eb5f1ccedd8acbed8 /tap-h225counter.c | |
parent | 207837b284dafc95cc5783494fc77669e8e87f44 (diff) | |
download | wireshark-e461d0d0e8dbad79f7f01249512982e951ad5e97.tar.gz wireshark-e461d0d0e8dbad79f7f01249512982e951ad5e97.tar.bz2 wireshark-e461d0d0e8dbad79f7f01249512982e951ad5e97.zip |
export more types from H.225.0 and H.245 which will be necessary for H.460.x, H.323 (Annex M,R), H.501
svn path=/trunk/; revision=23069
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 c1421cb3e5..933c9f69aa 100644 --- a/tap-h225counter.c +++ b/tap-h225counter.c @@ -329,7 +329,7 @@ h225counter_draw(void *phs) case 5: /* ReleaseComplete */ for(j=0;j<=REL_CMP_REASONS;j++) { if(hs->rel_cmp_reason[j]!=0) { - printf(" %s : %u\n", val_to_str(j,ReleaseCompleteReason_vals,"unknown reason "), hs->rel_cmp_reason[j]); + printf(" %s : %u\n", val_to_str(j,h225_ReleaseCompleteReason_vals,"unknown reason "), hs->rel_cmp_reason[j]); } } break; |