Use standard header file string.h for memset prototype (where
[openssl.git] / crypto / asn1 / i2d_dsap.c
index a7d03fe6d67b27a61c7a4eebd268cc077d632e6c..4021123ba3f34cf3f7cad3f0ee8293740c9622ae 100644 (file)
  * [including the GNU Public Licence.]
  */
 
+#ifndef NO_DSA
 #include <stdio.h>
 #include "cryptlib.h"
 #include <openssl/bn.h>
 #include <openssl/asn1_mac.h>
 #include <openssl/dsa.h>
 
-/*
- * ASN1err(ASN1_F_D2I_DSAPARAMS,ERR_R_ASN1_LENGTH_MISMATCH);
- */
-
 int i2d_DSAparams(DSA *a, unsigned char **pp)
        {
        BIGNUM *num[3];
@@ -110,10 +107,11 @@ int i2d_DSAparams(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);
        ret=t;
 err:
        *pp=p;
        return(ret);
        }
+#endif