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
d96a1e0c
Commit
d96a1e0c
authored
Jul 11, 2012
by
Andreas Schwab
Browse files
* gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
parent
34348bd4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
src/ChangeLog
src/ChangeLog
+2
-0
src/gnutls.c
src/gnutls.c
+1
-1
No files found.
src/ChangeLog
View file @
d96a1e0c
2012-07-11 Andreas Schwab <schwab@linux-m68k.org>
2012-07-11 Andreas Schwab <schwab@linux-m68k.org>
* gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
* coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
* coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
of Fcar/Fcdr if possible.
of Fcar/Fcdr if possible.
* font.c (check_otf_features): Likewise.
* font.c (check_otf_features): Likewise.
...
...
src/gnutls.c
View file @
d96a1e0c
...
@@ -916,7 +916,7 @@ one trustfile (usually a CA bundle). */)
...
@@ -916,7 +916,7 @@ one trustfile (usually a CA bundle). */)
for
(
tail
=
keylist
;
CONSP
(
tail
);
tail
=
XCDR
(
tail
))
for
(
tail
=
keylist
;
CONSP
(
tail
);
tail
=
XCDR
(
tail
))
{
{
Lisp_Object
keyfile
=
Fcar
(
XCAR
(
tail
));
Lisp_Object
keyfile
=
Fcar
(
XCAR
(
tail
));
Lisp_Object
certfile
=
Fcar
(
XC
D
R
(
tail
));
Lisp_Object
certfile
=
Fcar
(
Fcdr
(
XC
A
R
(
tail
))
)
;
if
(
STRINGP
(
keyfile
)
&&
STRINGP
(
certfile
))
if
(
STRINGP
(
keyfile
)
&&
STRINGP
(
certfile
))
{
{
GNUTLS_LOG2
(
1
,
max_log_level
,
"setting the client key file: "
,
GNUTLS_LOG2
(
1
,
max_log_level
,
"setting the client key file: "
,
...
...
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