aboutsummaryrefslogtreecommitdiff
path: root/crypto/x509v3/v3_utl.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2007-02-03 17:32:49 +0000
committerDr. Stephen Henson <steve@openssl.org>2007-02-03 17:32:49 +0000
commitaf32f9fdda4aadfea131646d77b0464566a17777 (patch)
tree6e8ac6f6bbe61f4633759740dfa8e62aca5ec850 /crypto/x509v3/v3_utl.c
parent357d5de5b9c3a84f170ce91abeafa71c26fefdd9 (diff)
downloadopenssl-af32f9fdda4aadfea131646d77b0464566a17777.zip
openssl-af32f9fdda4aadfea131646d77b0464566a17777.tar.gz
openssl-af32f9fdda4aadfea131646d77b0464566a17777.tar.bz2
Update from fips2 branch.
Diffstat (limited to 'crypto/x509v3/v3_utl.c')
-rw-r--r--crypto/x509v3/v3_utl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509v3/v3_utl.c b/crypto/x509v3/v3_utl.c
index 7c1d26f..3dba055 100644
--- a/crypto/x509v3/v3_utl.c
+++ b/crypto/x509v3/v3_utl.c
@@ -365,7 +365,7 @@ char *hex_to_string(unsigned char *buffer, long len)
char *tmp, *q;
unsigned char *p;
int i;
- static char hexdig[] = "0123456789ABCDEF";
+ const static char hexdig[] = "0123456789ABCDEF";
if(!buffer || !len) return NULL;
if(!(tmp = OPENSSL_malloc(len * 3 + 1))) {
X509V3err(X509V3_F_HEX_TO_STRING,ERR_R_MALLOC_FAILURE);