aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/gnutls.c5
2 files changed, 8 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 720614faecc..89fa90d9f92 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12012-01-29 Glenn Morris <rgm@gnu.org>
2
3 * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
4
12012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change) 52012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change)
2 6
3 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552). 7 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
diff --git a/src/gnutls.c b/src/gnutls.c
index e7801cea746..d7bf0e8edb8 100644
--- a/src/gnutls.c
+++ b/src/gnutls.c
@@ -1118,7 +1118,10 @@ syms_of_gnutls (void)
1118 defsubr (&Sgnutls_available_p); 1118 defsubr (&Sgnutls_available_p);
1119 1119
1120 DEFVAR_INT ("gnutls-log-level", global_gnutls_log_level, 1120 DEFVAR_INT ("gnutls-log-level", global_gnutls_log_level,
1121 doc: /* Logging level used by the GnuTLS functions. */); 1121 doc: /* Logging level used by the GnuTLS functions.
1122Set this larger than 0 to get debug output in the *Messages* buffer.
11231 is for important messages, 2 is for debug data, and higher numbers
1124are as per the GnuTLS logging conventions. */);
1122 global_gnutls_log_level = 0; 1125 global_gnutls_log_level = 0;
1123} 1126}
1124 1127