summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2008-03-23 14:13:45 +0000
committerDr. Stephen Henson <steve@openssl.org>2008-03-23 14:13:45 +0000
commitab568a17cfc11204b4576bf78b5d609dc6dd3b4f (patch)
treeaf6a32caf0a0ea38806c592e61625be52662e3d2
parentfe591284be1575d85d3a2f40d8ba93436ba2b3db (diff)
Fix duplicate asn1 ctrl values.
-rw-r--r--crypto/asn1/asn1t.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/asn1/asn1t.h b/crypto/asn1/asn1t.h
index edf2552cba..835b75a0f2 100644
--- a/crypto/asn1/asn1t.h
+++ b/crypto/asn1/asn1t.h
@@ -766,10 +766,10 @@ typedef struct ASN1_STREAM_ARG_st {
#define ASN1_OP_I2D_POST 7
#define ASN1_OP_PRINT_PRE 8
#define ASN1_OP_PRINT_POST 9
-#define ASN1_OP_STREAM_PRE 8
-#define ASN1_OP_STREAM_POST 9
-#define ASN1_OP_DETACHED_PRE 10
-#define ASN1_OP_DETACHED_POST 11
+#define ASN1_OP_STREAM_PRE 10
+#define ASN1_OP_STREAM_POST 11
+#define ASN1_OP_DETACHED_PRE 12
+#define ASN1_OP_DETACHED_POST 13
/* Macro to implement a primitive type */
#define IMPLEMENT_ASN1_TYPE(stname) IMPLEMENT_ASN1_TYPE_ex(stname, stname, 0)