From: Nils Larsch Date: Sat, 23 Apr 2005 13:45:49 +0000 (+0000) Subject: make asn.1 field names const X-Git-Tag: OpenSSL_0_9_8-beta1~13^2~150 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9edf4e81570f489080e0028bc348ec16adc4f42c;p=oweals%2Fopenssl.git make asn.1 field names const --- diff --git a/crypto/asn1/asn1_gen.c b/crypto/asn1/asn1_gen.c index 4341e5415a..62ebe88592 100644 --- a/crypto/asn1/asn1_gen.c +++ b/crypto/asn1/asn1_gen.c @@ -88,7 +88,7 @@ struct tag_name_st { - char *strnam; + const char *strnam; int len; int tag; }; diff --git a/crypto/asn1/asn1t.h b/crypto/asn1/asn1t.h index a024836834..cc0cd1c842 100644 --- a/crypto/asn1/asn1t.h +++ b/crypto/asn1/asn1t.h @@ -429,7 +429,7 @@ unsigned long flags; /* Various flags */ long tag; /* tag, not used if no tagging */ unsigned long offset; /* Offset of this field in structure */ #ifndef NO_ASN1_FIELD_NAMES -char *field_name; /* Field name */ +const char *field_name; /* Field name */ #endif ASN1_ITEM_EXP *item; /* Relevant ASN1_ITEM or ASN1_ADB */ };