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_11-41-g3bd1226


From: Nikos Mavrogiannopoulos
Subject: [SCM] GNU gnutls branch, master, updated. gnutls_3_0_11-41-g3bd1226
Date: Thu, 12 Jan 2012 20:03:01 +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=3bd122633647cd7f9e8e73c96c4779dd1b7a1549

The branch, master has been updated
       via  3bd122633647cd7f9e8e73c96c4779dd1b7a1549 (commit)
      from  3cd8eb57f09f0b6db70bc6e49b92b6d621287851 (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 3bd122633647cd7f9e8e73c96c4779dd1b7a1549
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Thu Jan 12 21:07:03 2012 +0100

    documentation updates

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

Summary of changes:
 doc/cha-intro-tls.texi |    6 ++----
 doc/errcodes.c         |   15 +++++++++------
 2 files changed, 11 insertions(+), 10 deletions(-)

diff --git a/doc/cha-intro-tls.texi b/doc/cha-intro-tls.texi
index 6b1bb72..588b5cc 100644
--- a/doc/cha-intro-tls.texi
+++ b/doc/cha-intro-tls.texi
@@ -533,10 +533,8 @@ To resume a TLS session the server normally store session 
parameters.  This
 complicates deployment, and could be avoiding by delegating the storage
 to the client. Because session parameters are sensitive they are encrypted
 and authenticated with a key only known to the server and then sent to the
-client. The Session Ticket
-extension implements this idea, and it is documented in
-RFC 5077 @xcite{TLSTKT}.
-
+client. The Session Tickets in RFC 5077 @xcite{TLSTKT}, describe this 
+idea, which is implemented in GnuTLS.
 
 @node Safe renegotiation
 @subsection Safe renegotiation
diff --git a/doc/errcodes.c b/doc/errcodes.c
index d00d25c..2d423ed 100644
--- a/doc/errcodes.c
+++ b/doc/errcodes.c
@@ -50,16 +50,17 @@ compar (const void *_n1, const void *_n2)
 
 static const char headers[] = "\\tablefirsthead{%\n"
        "\\hline\n"
-       "\\multicolumn{1}{|c}{Error code} &\n"
+       "\\multicolumn{1}{|c}{Code} &\n"
+       "\\multicolumn{1}{c}{Name} &\n"
        "\\multicolumn{1}{c|}{Description} \\\\\n"
        "\\hline}\n"
        "\\tablehead{%\n"
        "\\hline\n"
-       "\\multicolumn{2}{|l|}{\\small\\sl continued from previous page}\\\\\n"
+       "\\multicolumn{3}{|l|}{\\small\\sl continued from previous page}\\\\\n"
        "\\hline}\n"
        "\\tabletail{%\n"
        "\\hline\n"
-       "\\multicolumn{2}{|r|}{\\small\\sl continued on next page}\\\\\n"
+       "\\multicolumn{3}{|r|}{\\small\\sl continued on next page}\\\\\n"
        "\\hline}\n"
        "\\tablelasttail{\\hline}\n"
        "\\bottomcaption{The error codes table}\n\n";
@@ -123,6 +124,8 @@ while( str[i] != 0 && j <buffer_size - 1) {
    if (str[i]=='_') {
       buffer[j++] = '\\';
       buffer[j++] = '_';
+      buffer[j++] = '\\';
+      buffer[j++] = '-';
    } else if (str[i]=='#') {
       buffer[j++] = '\\';
       buffer[j++] = '#';
@@ -149,7 +152,7 @@ error_name names_to_sort[MAX_CODES]; /* up to MAX_CODES 
names  */
 
 puts( headers);
 
-printf("\\begin{supertabular}{|p{.52\\linewidth}|p{.40\\linewidth}|}\n");
+printf("\\begin{supertabular}{|p{.05\\linewidth}|p{.40\\linewidth}|p{.45\\linewidth}|}\n");
 
 memset( names_to_sort, 0, sizeof(names_to_sort));
 j=0;
@@ -163,7 +166,7 @@ for (i=0;i>-MAX_CODES;i--)
    j++;
 }
 
-qsort( names_to_sort, j, sizeof(error_name), compar);
+//qsort( names_to_sort, j, sizeof(error_name), compar);
 
 for (i=0;i<j;i++)
 {
@@ -171,7 +174,7 @@ for (i=0;i<j;i++)
    desc = gnutls_strerror( names_to_sort[i].error_index);
    if (desc == NULL || _name == NULL) continue;
 
-   printf( "{\\scriptsize{%s}} & %s", escape_string(_name, buffer1, 
sizeof(buffer1)), escape_string(desc, buffer2, sizeof(buffer2)));
+   printf( "%d & {\\scriptsize{%s}} & %s", names_to_sort[i].error_index, 
escape_string(_name, buffer1, sizeof(buffer1)), escape_string(desc, buffer2, 
sizeof(buffer2)));
    printf( "\\\\\n");
 }
 


hooks/post-receive
-- 
GNU gnutls



reply via email to

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