Expand OPENSSL_{GLOBAL,EXTERN} macros that I missed last time around,
authorjsing <jsing@openbsd.org>
Sat, 24 May 2014 07:26:05 +0000 (07:26 +0000)
committerjsing <jsing@openbsd.org>
Sat, 24 May 2014 07:26:05 +0000 (07:26 +0000)
since they are hiding in the #define forest.

ok miod@

lib/libcrypto/asn1/asn1.h
lib/libcrypto/asn1/asn1t.h
lib/libssl/src/crypto/asn1/asn1.h
lib/libssl/src/crypto/asn1/asn1t.h

index f92816b..e7264cc 100644 (file)
@@ -398,7 +398,7 @@ typedef const ASN1_ITEM ASN1_ITEM_EXP;
 #define ASN1_ITEM_rptr(ref) (&(ref##_it))
 
 #define DECLARE_ASN1_ITEM(name) \
-       OPENSSL_EXTERN const ASN1_ITEM name##_it;
+       extern const ASN1_ITEM name##_it;
 
 #else
 
index fcb3c5c..21d41bc 100644 (file)
@@ -78,7 +78,7 @@ extern "C" {
 /* Macros for start and end of ASN1_ITEM definition */
 
 #define ASN1_ITEM_start(itname) \
-       OPENSSL_GLOBAL const ASN1_ITEM itname##_it = {
+       const ASN1_ITEM itname##_it = {
 
 #define ASN1_ITEM_end(itname) \
                };
index f92816b..e7264cc 100644 (file)
@@ -398,7 +398,7 @@ typedef const ASN1_ITEM ASN1_ITEM_EXP;
 #define ASN1_ITEM_rptr(ref) (&(ref##_it))
 
 #define DECLARE_ASN1_ITEM(name) \
-       OPENSSL_EXTERN const ASN1_ITEM name##_it;
+       extern const ASN1_ITEM name##_it;
 
 #else
 
index fcb3c5c..21d41bc 100644 (file)
@@ -78,7 +78,7 @@ extern "C" {
 /* Macros for start and end of ASN1_ITEM definition */
 
 #define ASN1_ITEM_start(itname) \
-       OPENSSL_GLOBAL const ASN1_ITEM itname##_it = {
+       const ASN1_ITEM itname##_it = {
 
 #define ASN1_ITEM_end(itname) \
                };