aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-10-18 20:14:33 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-10-18 20:14:33 +0000
commit65dab79ca58cd95dc8741399a6ed7b8c21c606d3 (patch)
treea7204582c8bae5f3d3e851974d4ace6aa9dd1659 /lib/urldata.h
parentf0089b62919857bc7d3a5eda10fabdcfd8b20a27 (diff)
gcc -Wshadow complaints fixed
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index 0ebff5687..b880ff631 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -454,29 +454,29 @@ struct connectdata {
/* These two functions MUST be set by the curl_connect() function to be
be protocol dependent */
- CURLcode (*curl_do)(struct connectdata *connect);
- CURLcode (*curl_done)(struct connectdata *connect);
+ CURLcode (*curl_do)(struct connectdata *);
+ CURLcode (*curl_done)(struct connectdata *);
/* If the curl_do() function is better made in two halves, this
* curl_do_more() function will be called afterwards, if set. For example
* for doing the FTP stuff after the PASV/PORT command.
*/
- CURLcode (*curl_do_more)(struct connectdata *connect);
+ CURLcode (*curl_do_more)(struct connectdata *);
/* This function *MAY* be set to a protocol-dependent function that is run
* after the connect() and everything is done, as a step in the connection.
*/
- CURLcode (*curl_connect)(struct connectdata *connect);
+ CURLcode (*curl_connect)(struct connectdata *);
/* This function *MAY* be set to a protocol-dependent function that is run
* by the curl_disconnect(), as a step in the disconnection.
*/
- CURLcode (*curl_disconnect)(struct connectdata *connect);
+ CURLcode (*curl_disconnect)(struct connectdata *);
/* This function *MAY* be set to a protocol-dependent function that is run
* in the curl_close() function if protocol-specific cleanups are required.
*/
- CURLcode (*curl_close)(struct connectdata *connect);
+ CURLcode (*curl_close)(struct connectdata *);
/**** curl_get() phase fields */