Commit 9edf4e81 authored by Nils Larsch's avatar Nils Larsch
Browse files

make asn.1 field names const

parent 965a1cb9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -88,7 +88,7 @@

struct tag_name_st
	{
	char *strnam;
	const char *strnam;
	int len;
	int tag;
	};
+1 −1
Original line number Diff line number Diff line
@@ -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 */
};