[git] KSBA - branch, master, updated. debian/libksba-1.1.0-11-g0b81a5a
by Werner Koch
cvs at cvs.gnupg.org
Tue Mar 1 13:30:06 CET 2011
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 "KSBA is a library to access X.509 certificates and CMS data.".
The branch, master has been updated
via 0b81a5a30f4b57c80b379cd974914400c622f168 (commit)
via 1e5eea7461428c84f24dd97aef442c98b14e8280 (commit)
from 4768923e5800c2cb65dbcdeeae2d866b6de5d74a (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 0b81a5a30f4b57c80b379cd974914400c622f168
Author: Werner Koch <wk at gnupg.org>
Date: Tue Mar 1 12:41:00 2011 +0100
Prepare 1.2 release
diff --git a/ChangeLog b/ChangeLog
index bdb1780..ab252d9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2011-03-01 Werner Koch <wk at g10code.com>
+
+ Release 1.2.0.
+
+ * configure.ac: Bump LT version to C19/A11/R0.
+
2011-02-25 Werner Koch <wk at g10code.com>
* configure.ac (KSBA_CONFIG_HOST): New.
diff --git a/NEWS b/NEWS
index a47c37f..5cc047e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-Noteworthy changes in version 1.2.0
+Noteworthy changes in version 1.2.0 (2011-03-01)
------------------------------------------------
* New functions to allow the creation of X.509 certificates.
diff --git a/configure.ac b/configure.ac
index fc0b34e..fcfb450 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
# configure.ac - for libksba
# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
-# 2010 g10 Code GmbH
+# 2010, 2011 g10 Code GmbH
#
# This file is part of KSBA
#
@@ -26,7 +26,7 @@ min_automake_version="1.10"
# Set my_issvn to "yes" for non-released code. Remember to run an
# "svn up" and "autogen.sh" right before creating a distribution.
m4_define([my_version], [1.2.0])
-m4_define([my_issvn], [yes])
+m4_define([my_issvn], [no])
m4_define([svn_revision], m4_esyscmd([printf "%d" $(svn info 2>/dev/null \
| sed -n '/^Revision:/ s/[^0-9]//gp'|head -1)]))
@@ -42,8 +42,8 @@ AC_INIT([libksba],
# (Interfaces added: CURRENT++, AGE++, REVISION=0)
# (No interfaces changed: REVISION++)
# Please remember to document interface changes in the NEWS file.
-LIBKSBA_LT_CURRENT=18
-LIBKSBA_LT_AGE=10
+LIBKSBA_LT_CURRENT=19
+LIBKSBA_LT_AGE=11
LIBKSBA_LT_REVISION=0
#-------------------
# If the API is changed in an incompatible way: increment the next counter.
commit 1e5eea7461428c84f24dd97aef442c98b14e8280
Author: Werner Koch <wk at gnupg.org>
Date: Tue Mar 1 12:36:19 2011 +0100
Fix setting of not-before date
diff --git a/src/certreq.c b/src/certreq.c
index e91c5b2..d9737bf 100644
--- a/src/certreq.c
+++ b/src/certreq.c
@@ -747,7 +747,7 @@ build_cri (ksba_certreq_t cr)
{
tp[-2] = TYPE_UTC_TIME;
tp[-1] = 13;
- memcpy (tp, cr->x509.not_before, 6);
+ memcpy (tp, cr->x509.not_before+2, 6);
tp += 6;
memcpy (tp, cr->x509.not_before+9, 6);
tp += 6;
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 6 ++++++
NEWS | 2 +-
configure.ac | 8 ++++----
src/certreq.c | 2 +-
4 files changed, 12 insertions(+), 6 deletions(-)
hooks/post-receive
--
KSBA is a library to access X.509 certificates and CMS data.
http://git.gnupg.org
More information about the Gnupg-commits
mailing list