oops, only negative numbers are errors
authorDaniel Stenberg <daniel@haxx.se>
Wed, 13 Apr 2005 21:17:05 +0000 (21:17 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 13 Apr 2005 21:17:05 +0000 (21:17 +0000)
lib/gtls.c

index 0ec101c..fff5d5e 100644 (file)
@@ -154,8 +154,8 @@ Curl_gtls_connect(struct connectdata *conn,
     rc = gnutls_certificate_set_x509_trust_file(conn->ssl[sockindex].cred,
                                                 data->set.ssl.CAfile,
                                                 GNUTLS_X509_FMT_PEM);
-    if(rc) {
-      infof(data, "error reading ca cert file %s (%s)",
+    if(rc < 0) {
+      infof(data, "error reading ca cert file %s (%s)\n",
             data->set.ssl.CAfile, gnutls_strerror(rc));
     }
   }