From: Daniel Stenberg Date: Tue, 6 Nov 2012 18:45:51 +0000 (+0100) Subject: gnutls: fix compiler warnings X-Git-Tag: curl-7_28_1~55 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ab1f80200a6d1bcbac167ede429be52f3ef838bc;p=curl gnutls: fix compiler warnings --- diff --git a/lib/gtls.c b/lib/gtls.c index d8e88e2c4..a17d9eeda 100644 --- a/lib/gtls.c +++ b/lib/gtls.c @@ -304,7 +304,7 @@ static CURLcode handshake(struct connectdata *conn, return CURLE_OK; } else if((rc < 0) && !gnutls_error_is_fatal(rc)) { - char *strerr = NULL; + const char *strerr = NULL; if(rc == GNUTLS_E_WARNING_ALERT_RECEIVED) { int alert = gnutls_alert_get(session); @@ -317,7 +317,7 @@ static CURLcode handshake(struct connectdata *conn, failf(data, "gnutls_handshake() warning: %s", strerr); } else if(rc < 0) { - char *strerr = NULL; + const char *strerr = NULL; if(rc == GNUTLS_E_FATAL_ALERT_RECEIVED) { int alert = gnutls_alert_get(session);