gnutls-commit
[Top][All Lists]
Advanced

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

[SCM] GNU gnutls branch, master, updated. gnutls_3_1_4-67-g3b85cfe


From: Nikos Mavrogiannopoulos
Subject: [SCM] GNU gnutls branch, master, updated. gnutls_3_1_4-67-g3b85cfe
Date: Sat, 24 Nov 2012 17:03:39 +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 gnutls".

http://git.savannah.gnu.org/cgit/gnutls.git/commit/?id=3b85cfe4ae16024f8a317d66276c0ed9f81c2252

The branch, master has been updated
       via  3b85cfe4ae16024f8a317d66276c0ed9f81c2252 (commit)
       via  4e52df21c2bf9ef4b30a02086614af713ba20754 (commit)
       via  f3f07802392f183d36ee6852cecb1859d7c04ed7 (commit)
       via  7b334d581007ba4a91837edb1e0081959f32e363 (commit)
       via  1e9b1f2619446a6978c2a66e91ed0c70ad4bcf22 (commit)
       via  698b99c6169066498f98830fdfaaeaab0b2481e4 (commit)
      from  a53aa1f9a32e47b465d5b6ef3e3f5ed6b918a1c5 (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 3b85cfe4ae16024f8a317d66276c0ed9f81c2252
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Sat Nov 24 18:03:20 2012 +0100

    more files to ignore

commit 4e52df21c2bf9ef4b30a02086614af713ba20754
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Sat Nov 24 18:00:28 2012 +0100

    corrected placeOfBirth DN parsing.

commit f3f07802392f183d36ee6852cecb1859d7c04ed7
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Sat Nov 24 16:21:48 2012 +0100

    no need to release struct

commit 7b334d581007ba4a91837edb1e0081959f32e363
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Sat Nov 24 10:37:18 2012 +0100

    do not document low-level functions

commit 1e9b1f2619446a6978c2a66e91ed0c70ad4bcf22
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Sat Nov 24 08:56:43 2012 +0100

    set cache to null after deinitialization

commit 698b99c6169066498f98830fdfaaeaab0b2481e4
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Fri Nov 23 22:05:46 2012 +0100

    fixed test

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

Summary of changes:
 .gitignore                     |   11 +++++++++++
 doc/cha-cert-auth.texi         |    7 -------
 lib/gnutls_global.c            |    1 -
 lib/nettle/ecc_mulmod_cached.c |    1 +
 lib/x509/common.c              |    2 +-
 tests/cert-tests/template-test |    2 +-
 6 files changed, 14 insertions(+), 10 deletions(-)

diff --git a/.gitignore b/.gitignore
index a2a407e..ca25443 100644
--- a/.gitignore
+++ b/.gitignore
@@ -613,3 +613,14 @@ gl/tests/unused-parameter.h
 gl/tests/locale.h
 gl/iconv.h
 build-aux/snippet/unused-parameter.h
+gl/tests/test-c-strcasecmp
+gl/tests/test-c-strncasecmp
+gl/tests/test-iconv-h
+gl/tests/test-iconv-utf
+gl/tests/test-locale
+gl/tests/test-localename
+gl/tests/test-setlocale1
+gl/tests/test-setlocale2
+gl/tests/test-u8-mbtoucr
+gl/tests/test-u8-uctomb
+tmp-compare-makefile
diff --git a/doc/cha-cert-auth.texi b/doc/cha-cert-auth.texi
index a665ef7..85c57a2 100644
--- a/doc/cha-cert-auth.texi
+++ b/doc/cha-cert-auth.texi
@@ -234,13 +234,6 @@ of the issuer of the certificate.
 
 
@showfuncD{gnutls_x509_crt_get_issuer_dn,gnutls_x509_crt_get_issuer_dn_by_oid,gnutls_x509_crt_get_issuer_dn_oid,gnutls_x509_crt_get_issuer}
 
-The more powerful @funcref{gnutls_x509_crt_get_subject} and 
address@hidden provide efficient but low-level access
-to the contents of the distinguished name structure.
-
address@hidden,gnutls_x509_crt_get_issuer}
address@hidden
-
 
 @node X.509 public and private keys
 @subsection Accessing public and private keys
diff --git a/lib/gnutls_global.c b/lib/gnutls_global.c
index 4efab71..295e620 100644
--- a/lib/gnutls_global.c
+++ b/lib/gnutls_global.c
@@ -242,7 +242,6 @@ gnutls_global_init (void)
   res = asn1_array2tree (gnutls_asn1_tab, &_gnutls_gnutls_asn, NULL);
   if (res != ASN1_SUCCESS)
     {
-      asn1_delete_structure (&_gnutls_pkix1_asn);
       result = _gnutls_asn2err (res);
       goto out;
     }
diff --git a/lib/nettle/ecc_mulmod_cached.c b/lib/nettle/ecc_mulmod_cached.c
index c69596e..93b30b9 100644
--- a/lib/nettle/ecc_mulmod_cached.c
+++ b/lib/nettle/ecc_mulmod_cached.c
@@ -69,6 +69,7 @@ ecc_wmnaf_cache_free (void)
         }
 
       free (ecc_wmnaf_cache);
+      ecc_wmnaf_cache = NULL;
     }
 }
 
diff --git a/lib/x509/common.c b/lib/x509/common.c
index 0eff7a8..8de90f6 100644
--- a/lib/x509/common.c
+++ b/lib/x509/common.c
@@ -48,7 +48,7 @@ static const struct oid2string _oid2str[] = {
   /* PKIX
    */
   {"1.3.6.1.5.5.7.9.1", "dateOfBirth", 0, 1, "PKIX1.GeneralizedTime"},
-  {"1.3.6.1.5.5.7.9.2", "placeOfBirth", 0, 1, "PKIX1.DirectoryString"},
+  {"1.3.6.1.5.5.7.9.2", "placeOfBirth", 1, 1, "PKIX1.DirectoryString"},
   {"1.3.6.1.5.5.7.9.3", "gender", 0, 1, "PKIX1.PrintableString"},
   {"1.3.6.1.5.5.7.9.4", "countryOfCitizenship", 0, 1,
    "PKIX1.PrintableString"},
diff --git a/tests/cert-tests/template-test b/tests/cert-tests/template-test
index f1d87ca..876034a 100755
--- a/tests/cert-tests/template-test
+++ b/tests/cert-tests/template-test
@@ -18,7 +18,7 @@
 # along with GnuTLS; if not, write to the Free Software Foundation,
 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
-set -e
+#set -e
 
 srcdir=${srcdir:-.}
 CERTTOOL=${CERTTOOL:-../../src/certtool$EXEEXT}


hooks/post-receive
-- 
GNU gnutls



reply via email to

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