[SCM] GNU gnutls branch, gnutls_3_0_x-2, updated. gnutls_3_0_20-13-g2b9810f
"Nikos Mavrogiannopoulos" <[email protected]>
| Newsgroups | gmane.comp.encryption.gpg.gnutls.cvs |
|---|---|
| Message-ID | <[email protected]> |
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=2b9810f19cec0cc474e56c11110c86809bf8ec02
The branch, gnutls_3_0_x-2 has been updated
via 2b9810f19cec0cc474e56c11110c86809bf8ec02 (commit)
via 886faf140d8c6ac50b86fb5c2f59a460035c7429 (commit)
from 3b0281b15e01dd8df2baa27db5f9308fae5feb0e (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 2b9810f19cec0cc474e56c11110c86809bf8ec02
Author: Diego Elio Pettenò <[email protected]>
Date: Fri Jun 15 12:19:12 2012 -0700
build: make sure to declare the generated source files as BUILT_SOURCES
This allows proper building when using parallel make on a multi-core
system.
Signed-off-by: Diego Elio Pettenò <[email protected]>
Signed-off-by: Nikos Mavrogiannopoulos <[email protected]>
commit 886faf140d8c6ac50b86fb5c2f59a460035c7429
Author: Nikos Mavrogiannopoulos <[email protected]>
Date: Tue Jun 19 00:39:27 2012 +0200
correct comparison of sent data in dtls-stress.
-----------------------------------------------------------------------
Summary of changes:
src/Makefile.am | 3 +++
tests/dtls/dtls-stress.c | 2 +-
2 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/src/Makefile.am b/src/Makefile.am
index 5550f3b..8b3b578 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -150,6 +150,9 @@ libcmd_p11tool_la_LIBADD += ../gl/libgnu.la $(INET_PTON_LIB)
endif # ENABLE_PKCS11
+BUILT_SOURCES = ocsptool-args.c p11tool-args.c psk-args.c cli-debug-args.c \
+ cli-args.c serv-args.c srptool-args.c certtool-args.c
+
ocsptool-args.c: $(srcdir)/args-std.def $(srcdir)/ocsptool-args.def
-autogen ocsptool-args.def
p11tool-args.c: $(srcdir)/args-std.def $(srcdir)/p11tool-args.def
diff --git a/tests/dtls/dtls-stress.c b/tests/dtls/dtls-stress.c
index 6e85a80..7bad751 100644
--- a/tests/dtls/dtls-stress.c
+++ b/tests/dtls/dtls-stress.c
@@ -663,7 +663,7 @@ static void client(int sock)
len = process_error(gnutls_record_recv(session, buffer, sizeof(buffer)));
} while (len < 0);
- if (len > 0 && strcmp(line, buffer) == 0) {
+ if (len > 0 && strncmp(line, buffer, len) == 0) {
exit(0);
} else {
exit(1);
hooks/post-receive
--
GNU gnutls