libtasn1-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU libtasn1 branch, master, updated. libtasn1_2_12-4-gb054c18


From: Nikos Mavrogiannopoulos
Subject: [SCM] GNU libtasn1 branch, master, updated. libtasn1_2_12-4-gb054c18
Date: Fri, 06 Apr 2012 17:31:53 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU libtasn1".

http://git.savannah.gnu.org/cgit/libtasn1.git/commit/?id=b054c18537a0d2a7abc609d3f3561b090258ba3e

The branch, master has been updated
       via  b054c18537a0d2a7abc609d3f3561b090258ba3e (commit)
      from  0b80a8be08f4b99c5fffbafb0cd7e349cf13f3f1 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit b054c18537a0d2a7abc609d3f3561b090258ba3e
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Fri Apr 6 19:31:43 2012 +0200

    long is always signed.

-----------------------------------------------------------------------

Summary of changes:
 lib/decoding.c |    4 ++--
 lib/libtasn1.h |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/lib/decoding.c b/lib/decoding.c
index 1cfad35..978a205 100644
--- a/lib/decoding.c
+++ b/lib/decoding.c
@@ -58,7 +58,7 @@ _asn1_error_description_tag_error (ASN1_TYPE node, char 
*ErrorDescription)
  *   length, or -2 when the value was too big to fit in a int, or -4
  *   when the decoded length value plus @len would exceed @der_len.
  **/
-signed long
+long
 asn1_get_length_der (const unsigned char *der, int der_len, int *len)
 {
   unsigned int ans, sum, last;
@@ -189,7 +189,7 @@ asn1_get_tag_der (const unsigned char *der, int der_len,
  *
  * Since: 2.0
  **/
-signed long
+long
 asn1_get_length_ber (const unsigned char *ber, int ber_len, int *len)
 {
   int ret;
diff --git a/lib/libtasn1.h b/lib/libtasn1.h
index 289fb57..ceb220c 100644
--- a/lib/libtasn1.h
+++ b/lib/libtasn1.h
@@ -261,10 +261,10 @@ extern "C"
                      int *ret_len, unsigned char *str,
                      int str_size, int *bit_len);
 
-  extern ASN1_API signed long
+  extern ASN1_API long
     asn1_get_length_der (const unsigned char *der, int der_len, int *len);
 
-  extern ASN1_API signed long
+  extern ASN1_API long
     asn1_get_length_ber (const unsigned char *ber, int ber_len, int *len);
 
   extern ASN1_API void


hooks/post-receive
-- 
GNU libtasn1



reply via email to

[Prev in Thread] Current Thread [Next in Thread]