Fix gnutls problems caught by static checking.
* gnutls.c (Fgnutls_boot): Remove unused local. (Fgnutls_boot): Fix pointer signedness.
This commit is contained in:
parent
50cc807377
commit
92f6486a11
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2014-11-25 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
Fix gnutls problems caught by static checking.
|
||||
* gnutls.c (Fgnutls_boot): Remove unused local.
|
||||
(Fgnutls_boot): Fix pointer signedness.
|
||||
|
||||
2014-11-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
* gnutls.c (gnutls_certificate_details): Don't include certain
|
||||
|
|
|
@ -1185,7 +1185,6 @@ one trustfile (usually a CA bundle). */)
|
|||
Lisp_Object verify_error;
|
||||
Lisp_Object prime_bits;
|
||||
Lisp_Object warnings;
|
||||
Lisp_Object warning;
|
||||
|
||||
CHECK_PROCESS (proc);
|
||||
CHECK_SYMBOL (type);
|
||||
|
@ -1441,7 +1440,7 @@ one trustfile (usually a CA bundle). */)
|
|||
Lisp_Object warning = XCAR (tail);
|
||||
Lisp_Object message = Fgnutls_peer_status_warning_describe (warning);
|
||||
if (!NILP (message))
|
||||
GNUTLS_LOG2 (1, max_log_level, "verification:", SDATA (message));
|
||||
GNUTLS_LOG2 (1, max_log_level, "verification:", SSDATA (message));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue