aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/smrse/smrse.cnf
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-07-09 02:58:07 +0000
committerGuy Harris <guy@alum.mit.edu>2005-07-09 02:58:07 +0000
commit34ae8c850f7d868be29504f3894b509d129ec8c8 (patch)
treecd44c0940cfd4399a059bb4e41488224a6e89cb5 /asn1/smrse/smrse.cnf
parent9cb86fda9cd916415d7852c1dbfdac6ef05e42ec (diff)
Fix up a bunch of arguments to "dissect_ber_identifier()" to match its
current signature ("class" is a "gint8 *", not a "guint8 *", and "tag" is a "gint32 *", not a "guint32 *"). Re-generate the dissectors from the ASN.1 and the .cnf files in the cases where the arguments were fixed in a .cnf file. Give some dissectors the right svn:keywords and svn:eol-style settings. svn path=/trunk/; revision=14885
Diffstat (limited to 'asn1/smrse/smrse.cnf')
-rw-r--r--asn1/smrse/smrse.cnf4
1 files changed, 2 insertions, 2 deletions
diff --git a/asn1/smrse/smrse.cnf b/asn1/smrse/smrse.cnf
index ff44a4a958..8c5ef834f8 100644
--- a/asn1/smrse/smrse.cnf
+++ b/asn1/smrse/smrse.cnf
@@ -18,9 +18,9 @@
#.FN_BODY SMS-Address/address-value/octet-format
char *strp,tmpstr[21];
guint32 i, start_offset;
- guint8 class;
+ gint8 class;
gboolean pc, ind;
- guint32 tag;
+ gint32 tag;
guint32 len;
static char n2a[16] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };