Rename the type UCTTime to UTCTime as per X.680

get rid of a compiler warning.

svn path=/trunk/; revision=11116
This commit is contained in:
Ronnie Sahlberg 2004-06-05 09:59:45 +00:00
parent 11edbf29b1
commit dfb5168e96
2 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
* Helpers for ASN.1/BER dissection
* Ronnie Sahlberg (C) 2004
*
* $Id: packet-ber.c,v 1.10 2004/05/26 11:25:20 sahlberg Exp $
* $Id: packet-ber.c,v 1.11 2004/06/05 09:59:45 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -96,7 +96,7 @@ static const value_string ber_uni_tag_codes[] = {
{ BER_UNI_TAG_TeletextString , "TeletextString, T61String" },
{ BER_UNI_TAG_VideotexString , "VideotexString" },
{ BER_UNI_TAG_IA5String , "IA5String" },
{ BER_UNI_TAG_UCTTime , "UCTTime" },
{ BER_UNI_TAG_UTCTime , "UTCTime" },
{ BER_UNI_TAG_GeneralizedTime , "GeneralizedTime" },
{ BER_UNI_TAG_GraphicString , "GraphicString" },
{ BER_UNI_TAG_VisibleString , "VisibleString, ISO64String" },
@ -835,7 +835,7 @@ int dissect_ber_bitstring(gboolean implicit_tag, packet_info *pinfo, proto_tree
gboolean pc, ind;
guint32 tag;
guint32 len;
guint8 pad, b0, b1, val;
guint8 pad=0, b0, b1, val;
int end_offset;
proto_item *item = NULL;
proto_tree *tree = NULL;

View File

@ -2,7 +2,7 @@
* Helpers for ASN.1/BER dissection
* Ronnie Sahlberg (C) 2004
*
* $Id: packet-ber.h,v 1.7 2004/05/17 20:03:35 sahlberg Exp $
* $Id: packet-ber.h,v 1.8 2004/06/05 09:59:45 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -62,7 +62,7 @@ typedef int (*ber_callback)(packet_info *pinfo, proto_tree *tree, tvbuff_t *tvb,
#define BER_UNI_TAG_TeletextString 20 /* TeletextString, T61String */
#define BER_UNI_TAG_VideotexString 21
#define BER_UNI_TAG_IA5String 22
#define BER_UNI_TAG_UCTTime 23
#define BER_UNI_TAG_UTCTime 23
#define BER_UNI_TAG_GeneralizedTime 24
#define BER_UNI_TAG_GraphicString 25
#define BER_UNI_TAG_VisibleString 26 /* VisibleString, ISO64String */