summaryrefslogtreecommitdiffstats
path: root/crypto/asn1/a_utctm.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2007-10-13 15:51:32 +0000
committerAndy Polyakov <appro@openssl.org>2007-10-13 15:51:32 +0000
commitebc06fba67a84f4fb397863f6e5eb4212c25d4e5 (patch)
tree8688a563283d23f3cf82d718366ae4c1d5d17c8d /crypto/asn1/a_utctm.c
parente979c039f937f746a06948aa3749c200c5a5cadd (diff)
Bunch of constifications.
Diffstat (limited to 'crypto/asn1/a_utctm.c')
-rw-r--r--crypto/asn1/a_utctm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/asn1/a_utctm.c b/crypto/asn1/a_utctm.c
index d31c028193..2d15ff3c14 100644
--- a/crypto/asn1/a_utctm.c
+++ b/crypto/asn1/a_utctm.c
@@ -114,8 +114,8 @@ err:
int ASN1_UTCTIME_check(ASN1_UTCTIME *d)
{
- static int min[8]={ 0, 1, 1, 0, 0, 0, 0, 0};
- static int max[8]={99,12,31,23,59,59,12,59};
+ static const int min[8]={ 0, 1, 1, 0, 0, 0, 0, 0};
+ static const int max[8]={99,12,31,23,59,59,12,59};
char *a;
int n,i,l,o;