diff options
| author | Juanma Barranquero | 2012-04-24 01:15:08 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2012-04-24 01:15:08 +0200 |
| commit | 02fd101be2379fabdc5c45bf9ebd890e7c4bc58f (patch) | |
| tree | bd383266f7f0499e9e3bbd8ce9518c4af5cb6fe2 | |
| parent | 89a438bd861e9b80e8f80a23955624c74782921a (diff) | |
| download | emacs-02fd101be2379fabdc5c45bf9ebd890e7c4bc58f.tar.gz emacs-02fd101be2379fabdc5c45bf9ebd890e7c4bc58f.zip | |
src/gnutls.c (init_gnutls_functions): Fix bug#11311.
The value of :loaded-from is now a cons.
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/gnutls.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 8cb5202613e..73e54c21a60 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-04-23 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * gnutls.c (init_gnutls_functions): The value of :loaded-from is | ||
| 4 | now a cons (bug#11311). | ||
| 5 | |||
| 1 | 2012-04-23 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2012-04-23 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 7 | ||
| 3 | Do not create empty overlays with the evaporate property (Bug#9642). | 8 | Do not create empty overlays with the evaporate property (Bug#9642). |
diff --git a/src/gnutls.c b/src/gnutls.c index 70eea3b0b89..09268aee397 100644 --- a/src/gnutls.c +++ b/src/gnutls.c | |||
| @@ -201,7 +201,7 @@ init_gnutls_functions (Lisp_Object libraries) | |||
| 201 | max_log_level = global_gnutls_log_level; | 201 | max_log_level = global_gnutls_log_level; |
| 202 | 202 | ||
| 203 | GNUTLS_LOG2 (1, max_log_level, "GnuTLS library loaded:", | 203 | GNUTLS_LOG2 (1, max_log_level, "GnuTLS library loaded:", |
| 204 | SDATA (Fget (Qgnutls_dll, QCloaded_from))); | 204 | SDATA (XCAR (Fget (Qgnutls_dll, QCloaded_from)))); |
| 205 | return 1; | 205 | return 1; |
| 206 | } | 206 | } |
| 207 | 207 | ||
| @@ -419,7 +419,7 @@ emacs_gnutls_read (struct Lisp_Process *proc, char *buf, EMACS_INT nbyte) | |||
| 419 | { | 419 | { |
| 420 | proc->gnutls_handshakes_tried++; | 420 | proc->gnutls_handshakes_tried++; |
| 421 | emacs_gnutls_handshake (proc); | 421 | emacs_gnutls_handshake (proc); |
| 422 | GNUTLS_LOG2i (5, log_level, "Retried handshake", | 422 | GNUTLS_LOG2i (5, log_level, "Retried handshake", |
| 423 | proc->gnutls_handshakes_tried); | 423 | proc->gnutls_handshakes_tried); |
| 424 | return -1; | 424 | return -1; |
| 425 | } | 425 | } |