From: Daniel Stenberg Date: Tue, 10 Jun 2008 21:53:59 +0000 (+0000) Subject: fix warning in GnuTLS build by making sure Curl_gtls_send() takes a const X-Git-Tag: cares-1_5_3~446 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3940e69c91f8739b679309e870eae3e4e8af728f;p=curl fix warning in GnuTLS build by making sure Curl_gtls_send() takes a const void * --- diff --git a/lib/gtls.c b/lib/gtls.c index 6e762f161..89a8079bf 100644 --- a/lib/gtls.c +++ b/lib/gtls.c @@ -607,9 +607,9 @@ Curl_gtls_connect(struct connectdata *conn, /* return number of sent (non-SSL) bytes */ ssize_t Curl_gtls_send(struct connectdata *conn, - int sockindex, - void *mem, - size_t len) + int sockindex, + const void *mem, + size_t len) { ssize_t rc = gnutls_record_send(conn->ssl[sockindex].session, mem, len); diff --git a/lib/gtls.h b/lib/gtls.h index 8dc0a30d4..ee560a9cb 100644 --- a/lib/gtls.h +++ b/lib/gtls.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2007, Daniel Stenberg, , et al. + * Copyright (C) 1998 - 2008, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -35,7 +35,7 @@ void Curl_gtls_close(struct connectdata *conn, int sockindex); /* return number of sent (non-SSL) bytes */ ssize_t Curl_gtls_send(struct connectdata *conn, int sockindex, - void *mem, size_t len); + const void *mem, size_t len); ssize_t Curl_gtls_recv(struct connectdata *conn, /* connection data */ int num, /* socketindex */ char *buf, /* store read data here */