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_17-48-ge5d92cc


From: Nikos Mavrogiannopoulos
Subject: [SCM] GNU gnutls branch, master, updated. gnutls_3_0_17-48-ge5d92cc
Date: Sat, 31 Mar 2012 20:42:00 +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=e5d92cc1b7a98778ed7e606e8e3a54b2363ee200

The branch, master has been updated
       via  e5d92cc1b7a98778ed7e606e8e3a54b2363ee200 (commit)
       via  4965c2fbfd3405e2dfe7f7d747d03185d155c2a1 (commit)
       via  fb3bdf0edb4466fed16f881675bf617f114e0f72 (commit)
       via  05e7c4b27a989cef44fcfe0fd285d0206bbb4901 (commit)
      from  d096705e9e0dd896db917b610707b830534e003c (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 e5d92cc1b7a98778ed7e606e8e3a54b2363ee200
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Sat Mar 31 22:41:52 2012 +0200

    initialize value

commit 4965c2fbfd3405e2dfe7f7d747d03185d155c2a1
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Sat Mar 31 22:40:39 2012 +0200

    avoid killing child

commit fb3bdf0edb4466fed16f881675bf617f114e0f72
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Sat Mar 31 22:35:06 2012 +0200

    avoid closing fd[1] on server. For some reason it makes connection fail.

commit 05e7c4b27a989cef44fcfe0fd285d0206bbb4901
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Sat Mar 31 22:14:29 2012 +0200

    Add FUNCS to distribution

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

Summary of changes:
 doc/Makefile.am               |    2 +-
 tests/mini-dtls-rehandshake.c |    2 +-
 tests/mini-loss-time.c        |    1 -
 tests/mini-termination.c      |    5 +++--
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/doc/Makefile.am b/doc/Makefile.am
index 905d703..ebbd9c9 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -357,7 +357,7 @@ enums.texi: $(HEADER_FILES)
        done
        mv -f address@hidden $@
 
-gnutls_TEXINFOS += $(ENUMS)
+gnutls_TEXINFOS += $(ENUMS) $(FUNCS)
 DISTCLEANFILES += $(ENUMS) stamp_enums stamp_functions
 
 stamp_enums: enums.texi
diff --git a/tests/mini-dtls-rehandshake.c b/tests/mini-dtls-rehandshake.c
index 496d2f7..b8213d4 100644
--- a/tests/mini-dtls-rehandshake.c
+++ b/tests/mini-dtls-rehandshake.c
@@ -383,7 +383,7 @@ static void start (int server_initiated)
     {
       int status;
       /* parent */
-      close(fd[1]);
+
       server (fd[0], server_initiated);
       wait (&status);
       if (WEXITSTATUS(status) != 0)
diff --git a/tests/mini-loss-time.c b/tests/mini-loss-time.c
index 303e89b..3fe557b 100644
--- a/tests/mini-loss-time.c
+++ b/tests/mini-loss-time.c
@@ -274,7 +274,6 @@ static void start (int server_packet, int client_packet)
       close(fd[1]);
       server (fd[0], server_packet);
       close(fd[0]);
-      kill(child, SIGTERM);
     }
   else 
     {
diff --git a/tests/mini-termination.c b/tests/mini-termination.c
index 1830ccd..e72991e 100644
--- a/tests/mini-termination.c
+++ b/tests/mini-termination.c
@@ -329,8 +329,9 @@ static void start (const char* prio)
 
 static void ch_handler(int sig)
 {
-int status;
-  wait(&status);
+int status = 0;
+
+  waitpid(-1, &status, 0);
   if (WEXITSTATUS(status) != 0 ||
       (WIFSIGNALED(status) && WTERMSIG(status) == SIGSEGV))
     {


hooks/post-receive
-- 
GNU gnutls



reply via email to

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