OpenSSL CVS Repository
http://cvs.openssl.org/
____________________________________________________________
________________
Server: cvs.openssl.org Name: Richard
Levitte
Root: /v/openssl/cvs Email:
levitte openssl.org
Module: openssl Date:
31-Mar-2006 14:25:25
Branch: HEAD Handle:
2006033113252400
Modified files:
openssl/crypto/ts ts_asn1.c
Log:
If we declare a function, like d2i_TS_MSG_IMPRINT_bio(),
we'd better
*define* it too, or things like shared libraries might
be a bit sad.
Summary:
Revision Changes Path
1.5 +5 -0 openssl/crypto/ts/ts_asn1.c
____________________________________________________________
________________
patch -p0 <<' .'
Index: openssl/crypto/ts/ts_asn1.c
============================================================
================
$ cvs diff -u -r1.4 -r1.5 ts_asn1.c
--- openssl/crypto/ts/ts_asn1.c 26 Feb 2006 23:34:52
-0000 1.4
+++ openssl/crypto/ts/ts_asn1.c 31 Mar 2006 12:25:24
-0000 1.5
 -67,6 +67,11 
IMPLEMENT_ASN1_FUNCTIONS_const(TS_MSG_IMPRINT)
IMPLEMENT_ASN1_DUP_FUNCTION(TS_MSG_IMPRINT)
#ifndef OPENSSL_NO_BIO
+TS_MSG_IMPRINT *d2i_TS_MSG_IMPRINT_bio(BIO *bp,
TS_MSG_IMPRINT **a)
+ {
+ return ASN1_d2i_bio_of(TS_MSG_IMPRINT,
TS_MSG_IMPRINT_new, d2i_TS_MSG_IMPRINT, bp, a);
+ }
+
int i2d_TS_MSG_IMPRINT_bio(BIO *bp, TS_MSG_IMPRINT *a)
{
return ASN1_i2d_bio_of_const(TS_MSG_IMPRINT,
i2d_TS_MSG_IMPRINT, bp, a);
 .
____________________________________________________________
__________
OpenSSL Project http://www.openssl.org
CVS Repository Commit List
openssl-cvs openssl.org
Automated List Manager
majordomo openssl.org
|