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_0_8-31-g0f8554e


From: Simon Josefsson
Subject: [SCM] GNU gnutls branch, master, updated. gnutls_3_0_8-31-g0f8554e
Date: Tue, 06 Dec 2011 12:44:37 +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=0f8554e34b96c55616ee9639fa9f0546fc424430

The branch, master has been updated
       via  0f8554e34b96c55616ee9639fa9f0546fc424430 (commit)
      from  5f1ef036975e8b433cf69e8f826a5519ada317df (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 0f8554e34b96c55616ee9639fa9f0546fc424430
Author: Simon Josefsson <address@hidden>
Date:   Tue Dec 6 13:44:02 2011 +0100

    Fix getfuncs.pl parse bug; require non-empty list of function parameters.
    
    Otherwise it would detect a comment like '* foo()' as another function.

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

Summary of changes:
 doc/manpages/Makefile.am |    6 ------
 doc/scripts/getfuncs.pl  |    6 +++---
 2 files changed, 3 insertions(+), 9 deletions(-)

diff --git a/doc/manpages/Makefile.am b/doc/manpages/Makefile.am
index d6e73ec..e4010fc 100644
--- a/doc/manpages/Makefile.am
+++ b/doc/manpages/Makefile.am
@@ -134,8 +134,6 @@ APIMANS += gnutls_dtls_get_mtu.3
 APIMANS += gnutls_dtls_get_data_mtu.3
 APIMANS += gnutls_dtls_set_mtu.3
 APIMANS += gnutls_dtls_cookie_send.3
-APIMANS += gnutls_dtls_prestate_set.3
-APIMANS += gnutls_dtls_cookie_send.3
 APIMANS += gnutls_dtls_cookie_verify.3
 APIMANS += gnutls_dtls_prestate_set.3
 APIMANS += gnutls_record_get_discarded.3
@@ -271,7 +269,6 @@ APIMANS += gnutls_certificate_set_x509_crl.3
 APIMANS += gnutls_certificate_get_openpgp_keyring.3
 APIMANS += gnutls_global_init.3
 APIMANS += gnutls_global_deinit.3
-APIMANS += gnutls_global_set_time_function.3
 APIMANS += gnutls_global_set_mutex.3
 APIMANS += gnutls_global_set_mem_functions.3
 APIMANS += gnutls_global_set_time_function.3
@@ -418,7 +415,6 @@ APIMANS += gnutls_openpgp_crt_verify_self.3
 APIMANS += gnutls_openpgp_keyring_get_crt.3
 APIMANS += gnutls_openpgp_keyring_get_crt_count.3
 APIMANS += gnutls_openpgp_set_recv_key_function.3
-APIMANS += gnutls_openpgp_set_recv_key_function.3
 APIMANS += gnutls_certificate_set_openpgp_key.3
 APIMANS += gnutls_certificate_set_openpgp_key_file.3
 APIMANS += gnutls_certificate_set_openpgp_key_mem.3
@@ -426,7 +422,6 @@ APIMANS += gnutls_certificate_set_openpgp_key_file2.3
 APIMANS += gnutls_certificate_set_openpgp_key_mem2.3
 APIMANS += gnutls_certificate_set_openpgp_keyring_mem.3
 APIMANS += gnutls_certificate_set_openpgp_keyring_file.3
-APIMANS += gnutls_pkcs11_set_pin_function.3
 APIMANS += gnutls_pkcs11_init.3
 APIMANS += gnutls_pkcs11_deinit.3
 APIMANS += gnutls_pkcs11_set_token_function.3
@@ -506,7 +501,6 @@ APIMANS += gnutls_x509_crt_get_subject_key_id.3
 APIMANS += gnutls_x509_crt_get_subject_unique_id.3
 APIMANS += gnutls_x509_crt_get_issuer_unique_id.3
 APIMANS += gnutls_x509_crt_get_authority_info_access.3
-APIMANS += gnutls_x509_crt_get_authority_info_access.3
 APIMANS += gnutls_x509_crt_get_crl_dist_points.3
 APIMANS += gnutls_x509_crt_set_crl_dist_points2.3
 APIMANS += gnutls_x509_crt_set_crl_dist_points.3
diff --git a/doc/scripts/getfuncs.pl b/doc/scripts/getfuncs.pl
index 08518ee..b626ade 100755
--- a/doc/scripts/getfuncs.pl
+++ b/doc/scripts/getfuncs.pl
@@ -11,15 +11,15 @@ while ($line=<STDIN>) {
 
   if ($line !~ m/typedef/ && $line !~ m/Copyright/) {
     $func = '';
-    if ($line =~ m/^\s*\w+[\s\*]+([A-Za-z0-9_]+)\s*\(.*/) {
+    if ($line =~ m/^\s*\w+[\s\*]+([A-Za-z0-9_]+)\s*\([^\)]+/) {
         $func = $1;
     }
 
-    if ($line =~ m/^\s*\w+\s+\w+[\s\*]+([A-Za-z0-9_]+)\s*\(.*/) {
+    if ($line =~ m/^\s*\w+\s+\w+[\s\*]+([A-Za-z0-9_]+)\s*\([^\)]+/) {
         $func = $1;
     }
 
-    if ($line =~ m/^[\s\*]*([A-Za-z0-9_]+)\s*\(.*/) {
+    if ($line =~ m/^[\s\*]*([A-Za-z0-9_]+)\s*\([^\)]+/) {
         $func = $1;
     }
     


hooks/post-receive
-- 
GNU gnutls



reply via email to

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