Don't signal errors on E_AGAIN
* src/gnutls.c (Fgnutls_errorp): Qgnutls_e_again is not an error now that TLS is async.
This commit is contained in:
parent
21b509d444
commit
20cc418259
1 changed files with 3 additions and 1 deletions
|
@ -719,7 +719,9 @@ usage: (gnutls-errorp ERROR) */
|
|||
attributes: const)
|
||||
(Lisp_Object err)
|
||||
{
|
||||
if (EQ (err, Qt)) return Qnil;
|
||||
if (EQ (err, Qt)
|
||||
|| EQ (err, Qgnutls_e_again))
|
||||
return Qnil;
|
||||
|
||||
return Qt;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue