]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
examples: corrected the required version of example
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Wed, 27 Apr 2016 05:38:47 +0000 (07:38 +0200)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Wed, 27 Apr 2016 05:38:53 +0000 (07:38 +0200)
doc/examples/ex-client-x509.c

index a43d6798378d182cef853d9ec69e8910d13467c0..2fe477410198155830a7df3143251d8d420bd5f9 100644 (file)
@@ -36,8 +36,8 @@ int main(void)
 #endif
         gnutls_certificate_credentials_t xcred;
 
-        if (gnutls_check_version("3.5.0") == NULL) {
-                fprintf(stderr, "GnuTLS 3.5.0 or later is required for this example\n");
+        if (gnutls_check_version("3.4.6") == NULL) {
+                fprintf(stderr, "GnuTLS 3.4.6 or later is required for this example\n");
                 exit(1);
         }