Change the version text, it's time to release the first beta of 0.9.5a.
[openssl.git] / crypto / asn1 / i2d_s_pr.c
index afd8f5af03e286738f02caed6c9cb2760778cd0e..e399ceaeb91d4b852f1fe691ad067b7ce53a472e 100644 (file)
@@ -56,6 +56,7 @@
  * [including the GNU Public Licence.]
  */
 
+#ifndef NO_DSA
 #include <stdio.h>
 #include "cryptlib.h"
 #include <openssl/bn.h>
 #include <openssl/objects.h>
 #include <openssl/asn1_mac.h>
 
-/*
- * ASN1err(ASN1_F_I2D_DSAPRIVATEKEY,ASN1_R_UNKNOWN_ATTRIBUTE_TYPE);
- */
-
 int i2d_DSAPrivateKey(DSA *a, unsigned char **pp)
        {
        BIGNUM *num[6];
@@ -119,8 +116,8 @@ int i2d_DSAPrivateKey(DSA *a, unsigned char **pp)
                bs.length=BN_bn2bin(num[i],bs.data);
                i2d_ASN1_INTEGER(&bs,&p);
                }
-       Free((char *)bs.data);
+       Free(bs.data);
        *pp=p;
        return(t);
        }
-
+#endif