static const char * = "" -> static const char[] = "", to produce shorter code.
authormiod <miod@openbsd.org>
Sun, 27 Apr 2014 20:24:52 +0000 (20:24 +0000)
committermiod <miod@openbsd.org>
Sun, 27 Apr 2014 20:24:52 +0000 (20:24 +0000)
No functional change.

lib/libcrypto/asn1/f_enum.c
lib/libcrypto/asn1/f_int.c
lib/libcrypto/asn1/f_string.c
lib/libssl/src/crypto/asn1/f_enum.c
lib/libssl/src/crypto/asn1/f_int.c
lib/libssl/src/crypto/asn1/f_string.c

index 5c42cdf..c7b81cc 100644 (file)
@@ -67,7 +67,7 @@ int
 i2a_ASN1_ENUMERATED(BIO *bp, ASN1_ENUMERATED *a)
 {
        int i, n = 0;
-       static const char *h = "0123456789ABCDEF";
+       static const char h[] = "0123456789ABCDEF";
        char buf[2];
 
        if (a == NULL)
index 41e0e75..283860d 100644 (file)
@@ -65,7 +65,7 @@ int
 i2a_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *a)
 {
        int i, n = 0;
-       static const char *h = "0123456789ABCDEF";
+       static const char h[] = "0123456789ABCDEF";
        char buf[2];
 
        if (a == NULL)
index 14f6554..0a1f136 100644 (file)
@@ -65,7 +65,7 @@ int
 i2a_ASN1_STRING(BIO *bp, ASN1_STRING *a, int type)
 {
        int i, n = 0;
-       static const char *h = "0123456789ABCDEF";
+       static const char h[] = "0123456789ABCDEF";
        char buf[2];
 
        if (a == NULL)
index 5c42cdf..c7b81cc 100644 (file)
@@ -67,7 +67,7 @@ int
 i2a_ASN1_ENUMERATED(BIO *bp, ASN1_ENUMERATED *a)
 {
        int i, n = 0;
-       static const char *h = "0123456789ABCDEF";
+       static const char h[] = "0123456789ABCDEF";
        char buf[2];
 
        if (a == NULL)
index 41e0e75..283860d 100644 (file)
@@ -65,7 +65,7 @@ int
 i2a_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *a)
 {
        int i, n = 0;
-       static const char *h = "0123456789ABCDEF";
+       static const char h[] = "0123456789ABCDEF";
        char buf[2];
 
        if (a == NULL)
index 14f6554..0a1f136 100644 (file)
@@ -65,7 +65,7 @@ int
 i2a_ASN1_STRING(BIO *bp, ASN1_STRING *a, int type)
 {
        int i, n = 0;
-       static const char *h = "0123456789ABCDEF";
+       static const char h[] = "0123456789ABCDEF";
        char buf[2];
 
        if (a == NULL)