diff options
author | Bodo Möller <bodo@openssl.org> | 2005-05-09 02:27:37 +0200 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 2005-05-09 02:27:37 +0200 |
commit | fbeaa3c47d05dd90781bdf13b9004fd274512e74 (patch) | |
tree | a1fae59f682a878df3993285bd5f79832a86fa92 /crypto/asn1/a_dup.c | |
parent | rebuild (starting with state from 0.9.7-stable branch) to avoid clutter (diff) | |
download | openssl-fbeaa3c47d05dd90781bdf13b9004fd274512e74.tar.xz openssl-fbeaa3c47d05dd90781bdf13b9004fd274512e74.zip |
Update util/ck_errf.pl script, and have it run automatically
during "make errors" and thus during "make update".
Fix lots of bugs that util/ck_errf.pl can detect automatically.
Various others of these are still left to fix; that's why
"make update" will complain loudly when run now.
Diffstat (limited to 'crypto/asn1/a_dup.c')
-rw-r--r-- | crypto/asn1/a_dup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/asn1/a_dup.c b/crypto/asn1/a_dup.c index 09f5f7ad89..199d50f521 100644 --- a/crypto/asn1/a_dup.c +++ b/crypto/asn1/a_dup.c @@ -101,7 +101,7 @@ void *ASN1_item_dup(const ASN1_ITEM *it, void *x) i=ASN1_item_i2d(x,&b,it); if (b == NULL) - { ASN1err(ASN1_F_ASN1_DUP,ERR_R_MALLOC_FAILURE); return(NULL); } + { ASN1err(ASN1_F_ASN1_ITEM_DUP,ERR_R_MALLOC_FAILURE); return(NULL); } p= b; ret=ASN1_item_d2i(NULL,&p,i, it); OPENSSL_free(b); |