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_13-53-gb789eb8


From: Nikos Mavrogiannopoulos
Subject: [SCM] GNU libtasn1 branch, master, updated. libtasn1_2_13-53-gb789eb8
Date: Sun, 28 Oct 2012 13:50:05 +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=b789eb8ad89e53f4c78be9d0a3d2afa9195250f0

The branch, master has been updated
       via  b789eb8ad89e53f4c78be9d0a3d2afa9195250f0 (commit)
       via  3a7e2d58be4bffbb2506f61b8be4f9da405b000b (commit)
       via  58afc050dac52b2d2c56869a2f139729f666b740 (commit)
      from  2f1c471fbcdbcedf69f914a5a3726107c156b17d (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 b789eb8ad89e53f4c78be9d0a3d2afa9195250f0
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Sun Oct 28 14:46:10 2012 +0100

    break compatibility with previous releases.

commit 3a7e2d58be4bffbb2506f61b8be4f9da405b000b
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Sun Oct 28 14:31:12 2012 +0100

    corrected types

commit 58afc050dac52b2d2c56869a2f139729f666b740
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Sun Oct 28 14:27:11 2012 +0100

    bumped version

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

Summary of changes:
 NEWS         |    2 +-
 configure.ac |    4 ++--
 lib/ASN1.y   |    6 +++---
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/NEWS b/NEWS
index d5c9297..7ab3347 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
 GNU Libtasn1 NEWS                                     -*- outline -*-
 
-* Noteworthy changes in release 3.0 (unreleased) [stable]
+* Noteworthy changes in release 3.0 (2012-10-28) [stable]
 - Added tool in tests/ to benchmark X.509 structure decoding.
 - Added asn1_read_node_value() to obtain a node's value.
 - Optimizations in internal tree allocation.
diff --git a/configure.ac b/configure.ac
index 5a691e6..aae27f3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -28,9 +28,9 @@ AM_SILENT_RULES([yes])
 # Interfaces changed/added/removed:   CURRENT++       REVISION=0
 # Interfaces added:                             AGE++
 # Interfaces removed:                           AGE=0
-AC_SUBST(LT_CURRENT, 5)
+AC_SUBST(LT_CURRENT, 6)
 AC_SUBST(LT_REVISION, 0)
-AC_SUBST(LT_AGE, 2)
+AC_SUBST(LT_AGE, 0)
 
 AC_PROG_CC
 gl_EARLY
diff --git a/lib/ASN1.y b/lib/ASN1.y
index 18c93b3..69f43b5 100644
--- a/lib/ASN1.y
+++ b/lib/ASN1.y
@@ -34,7 +34,7 @@
 static FILE *file_asn1;                        /* Pointer to file to parse */
 static int result_parse;       /* result of the parser
                                           algorithm */
-static asn1_node_t p_tree;             /* pointer to the root of the
+static asn1_node p_tree;               /* pointer to the root of the
                                           structure created by the
                                           parser*/
 static unsigned long lineNumber;       /* line number describing the
@@ -57,7 +57,7 @@ static int _asn1_yylex(void);
 %union {
   unsigned int constant;
   char str[ASN1_MAX_NAME_SIZE+1];
-  asn1_node_t node;
+  asn1_node node;
 }
 
 
@@ -578,7 +578,7 @@ _asn1_create_errorDescription(int error,char 
*errorDescription)
  *   characters.
  **/
 int
-asn1_parser2tree(const char *file_name, asn1_node_t *definitions,
+asn1_parser2tree(const char *file_name, asn1_node *definitions,
                 char *errorDescription) 
 {
 


hooks/post-receive
-- 
GNU libtasn1



reply via email to

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