* src/gnutls.c (Fgnutls_boot): Use `Flistp' instead of
`CHECK_LIST_CONS`.
+2013-12-16 Teodor Zlatanov <tzz@lifelogs.com>
+
+ * gnutls.c (Fgnutls_boot): Use `Flistp' instead of
+ `CHECK_LIST_CONS`.
+
2013-12-16 Martin Rudalics <rudalics@gmx.at>
* w32term.c (w32_enable_frame_resize_hack): Default to 1.
verify_error = Fplist_get (proplist, QCgnutls_bootprop_verify_error);
prime_bits = Fplist_get (proplist, QCgnutls_bootprop_min_prime_bits);
- CHECK_LIST_CONS (verify_error, verify_error);
+ if (!Flistp (verify_error))
+ error ("gnutls-boot: invalid :verify_error parameter (not a list)");
if (!STRINGP (hostname))
error ("gnutls-boot: invalid :hostname parameter (not a string)");