From: Nikos Mavrogiannopoulos Date: Thu, 6 Jun 2013 21:32:22 +0000 (+0200) Subject: corrected priority strings X-Git-Tag: gnutls_3_2_2~75 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fd2f48da2f4f7b076edb55074a8e511afec2df9d;p=thirdparty%2Fgnutls.git corrected priority strings --- diff --git a/guile/tests/priorities.scm b/guile/tests/priorities.scm index fe4f4a8a65..554fde7697 100644 --- a/guile/tests/priorities.scm +++ b/guile/tests/priorities.scm @@ -32,14 +32,14 @@ ;; Valid priority strings (from the manual). '("NONE:+VERS-TLS-ALL:+MAC-ALL:+RSA:+AES-128-CBC:+SIGN-ALL:+COMP-NULL" "NORMAL:-ARCFOUR-128" - "SECURE:-VERS-SSL3.0:+COMP-DEFLATE" + "SECURE128:-VERS-SSL3.0:+COMP-DEFLATE" "NONE:+VERS-TLS-ALL:+AES-128-CBC:+RSA:+SHA1:+COMP-NULL:+SIGN-RSA-SHA1")) (define %invalid-priority-strings ;; Invalid strings: the prefix and the suffix that leads to a parse error. '(("" . "THIS-DOES-NOT-WORK") ("NORMAL:" . "FAIL-HERE") - ("SECURE:-VERS-SSL3.0:" . "+FAIL-HERE") + ("SECURE128:-VERS-SSL3.0:" . "+FAIL-HERE") ("NONE:+VERS-TLS-ALL:+AES-128-CBC:" . "+FAIL-HERE:+SHA1:+COMP-NULL:+SIGN-RSA-SHA1")))