summaryrefslogtreecommitdiff
path: root/tap-ansi_astat.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-12-09 18:49:32 +0000
committerGuy Harris <guy@alum.mit.edu>2003-12-09 18:49:32 +0000
commit15f863dc3c7080b642c32dbce43ba9cc70fdda39 (patch)
treefc531c533bbf6764d99175fec5f17116a301f39d /tap-ansi_astat.c
parent11d8817da0148daa1cda2db873a3ec31c0c02a69 (diff)
downloadwireshark-15f863dc3c7080b642c32dbce43ba9cc70fdda39.tar.gz
From Michael Lum:
new taps for GSM A-interface; fixes for ANSI A-interface taps. svn path=/trunk/; revision=9220
Diffstat (limited to 'tap-ansi_astat.c')
-rw-r--r--tap-ansi_astat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tap-ansi_astat.c b/tap-ansi_astat.c
index 94b498acca..7091d6fd85 100644
--- a/tap-ansi_astat.c
+++ b/tap-ansi_astat.c
@@ -3,7 +3,7 @@
* Copyright 2003, Michael Lum <mlum [AT] telostech.com>
* In association with Telos Technology Inc.
*
- * $Id: tap-ansi_astat.c,v 1.2 2003/12/03 23:46:22 guy Exp $
+ * $Id: tap-ansi_astat.c,v 1.3 2003/12/09 18:49:30 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -106,7 +106,7 @@ ansi_a_stat_draw(
if (stat_p->bsmap_message_type[ansi_a_ios401_bsmap_strings[i].value] > 0)
{
printf("0x%02x %-50s%d\n",
- i,
+ ansi_a_ios401_bsmap_strings[i].value,
ansi_a_ios401_bsmap_strings[i].strptr,
stat_p->bsmap_message_type[ansi_a_ios401_bsmap_strings[i].value]);
}
@@ -123,7 +123,7 @@ ansi_a_stat_draw(
if (stat_p->dtap_message_type[ansi_a_ios401_dtap_strings[i].value] > 0)
{
printf("0x%02x %-50s%d\n",
- i,
+ ansi_a_ios401_dtap_strings[i].value,
ansi_a_ios401_dtap_strings[i].strptr,
stat_p->dtap_message_type[ansi_a_ios401_dtap_strings[i].value]);
}