Fix to i2d_DSAPublicKey() to return the correct length.
[openssl.git] / crypto / asn1 / i2d_s_pu.c
index bfa40f3e627b4a2a178e739edbdb1a6bdc4ae724..18f790f746515e9ec3f55cfacbd9df52cf6e7e44 100644 (file)
  * [including the GNU Public Licence.]
  */
 
+#ifndef NO_DSA
 #include <stdio.h>
 #include "cryptlib.h"
-#include "bn.h"
-#include "dsa.h"
-#include "objects.h"
-#include "asn1_mac.h"
-
-/*
- * ASN1err(ASN1_F_I2D_DSAPUBLICKEY,ASN1_R_UNKNOWN_ATTRIBUTE_TYPE);
- */
+#include <openssl/bn.h>
+#include <openssl/dsa.h>
+#include <openssl/objects.h>
+#include <openssl/asn1_mac.h>
 
 int i2d_DSAPublicKey(DSA *a, unsigned char **pp)
        {
@@ -126,6 +123,7 @@ int i2d_DSAPublicKey(DSA *a, unsigned char **pp)
                }
        Free((char *)bs.data);
        *pp=p;
-       return(t);
+       if(all) return(t);
+       else return(tot);
        }
-
+#endif