]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
cosmetics
authorAndreas Steffen <andreas.steffen@strongswan.org>
Fri, 12 Oct 2007 19:20:59 +0000 (19:20 -0000)
committerAndreas Steffen <andreas.steffen@strongswan.org>
Fri, 12 Oct 2007 19:20:59 +0000 (19:20 -0000)
src/libstrongswan/asn1/asn1.c

index c0ccc06122d27d9d24f1ee7fd1b9791f3cabb32f..720461649384f9770280768f6c49d55c003f2d53 100644 (file)
@@ -759,9 +759,10 @@ chunk_t asn1_integer_from_mpz(const mpz_t value)
 {
        size_t bits = mpz_sizeinbase(value, 2);  /* size in bits */
        chunk_t n;
+
        n.len = 1 + bits / 8;  /* size in bytes */      
        n.ptr = mpz_export(NULL, NULL, 1, n.len, 1, 0, value);
-       
+
        return asn1_wrap(ASN1_INTEGER, "m", n);
 }