Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
8d4c3955
Commit
8d4c3955
authored
Apr 26, 2011
by
Paul Eggert
Browse files
* gnutls.c: Remove unused local.
parent
7754e151
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
src/ChangeLog
src/ChangeLog
+1
-0
src/gnutls.c
src/gnutls.c
+2
-2
No files found.
src/ChangeLog
View file @
8d4c3955
...
...
@@ -7,6 +7,7 @@
(emacs_gnutls_read): Do that check. This is the other caller.
(emacs_gnutls_handle_error): Remove unused local.
(Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
Remove unused local.
lisp.h: Fix a problem with aliasing and vector headers.
GCC 4.6.0 optimizes based on type-based alias analysis. For
...
...
src/gnutls.c
View file @
8d4c3955
...
...
@@ -474,7 +474,7 @@ one trustfile (usually a CA bundle). */)
Lisp_Object loglevel;
Lisp_Object hostname;
Lisp_Object verify_flags;
Lisp_Object verify_error;
/*
Lisp_Object verify_error;
*/
Lisp_Object verify_hostname_error;
CHECK_PROCESS (proc);
...
...
@@ -488,7 +488,7 @@ one trustfile (usually a CA bundle). */)
/* callbacks = Fplist_get (proplist, Qgnutls_bootprop_callbacks); */
loglevel = Fplist_get (proplist, Qgnutls_bootprop_loglevel);
verify_flags = Fplist_get (proplist, Qgnutls_bootprop_verify_flags);
verify_error
= Fplist_get (proplist, Qgnutls_bootprop_verify_error);
/*
verify_error = Fplist_get (proplist, Qgnutls_bootprop_verify_error);
*/
verify_hostname_error = Fplist_get (proplist, Qgnutls_bootprop_verify_hostname_error);
if (!STRINGP (hostname))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment