]> code.delx.au - gnu-emacs/blobdiff - src/gnutls.c
Fix handling of face attributes in Fx_create_frame (Bug#16529).
[gnu-emacs] / src / gnutls.c
index f04d9c44b41cbf45e14e59a1ae993781aff3616b..dd975b160cd1c4629a730f675b5c562ddc117670 100644 (file)
@@ -1,5 +1,5 @@
 /* GnuTLS glue for GNU Emacs.
-   Copyright (C) 2010-2013 Free Software Foundation, Inc.
+   Copyright (C) 2010-2014 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
@@ -825,7 +825,7 @@ one trustfile (usually a CA bundle).  */)
   verify_error          = Fplist_get (proplist, QCgnutls_bootprop_verify_error);
   prime_bits            = Fplist_get (proplist, QCgnutls_bootprop_min_prime_bits);
 
-  if (!Flistp (verify_error))
+  if (NILP (Flistp (verify_error)))
     error ("gnutls-boot: invalid :verify_error parameter (not a list)");
 
   if (!STRINGP (hostname))