aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-08-14 08:40:06 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-08-14 08:40:06 +0000
commit616d8eda41e692bdf6f4f848542a0b6bd8920bce (patch)
tree87a25eec13770dcd2cbc0bfa7367f71551a4b28b
parent85bb25e6287a378d12bba6a0baae894f2efb32c9 (diff)
Curl_open() only take one argument now,
Curl_ldap_done() and Curl_dict_done() were removed, compiler warnings corrected
-rw-r--r--lib/url.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/lib/url.c b/lib/url.c
index a40d1bbe9..7358caf46 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -184,9 +184,11 @@ CURLcode Curl_close(CURL *curl)
}
static
-int my_getpass(void *clientp, char *prompt, char* buffer, int buflen )
+int my_getpass(void *clientp, const char *prompt, char* buffer, int buflen )
{
char *retbuf;
+ clientp=NULL; /* prevent compiler warning */
+
retbuf = getpass_r(prompt, buffer, buflen);
if(NULL == retbuf)
return 1;
@@ -195,7 +197,7 @@ int my_getpass(void *clientp, char *prompt, char* buffer, int buflen )
}
-CURLcode Curl_open(CURL **curl, char *url)
+CURLcode Curl_open(CURL **curl)
{
/* We don't yet support specifying the URL at this point */
struct UrlData *data;
@@ -953,7 +955,7 @@ ConnectionExists(struct UrlData *data,
struct connectdata *needle,
struct connectdata **usethis)
{
- size_t i;
+ long i;
struct connectdata *check;
for(i=0; i< data->numconnects; i++) {
@@ -1016,7 +1018,7 @@ ConnectionExists(struct UrlData *data,
static int
ConnectionKillOne(struct UrlData *data)
{
- size_t i;
+ long i;
struct connectdata *conn;
int highscore=-1;
int connindex=-1;
@@ -1082,7 +1084,7 @@ static unsigned int
ConnectionStore(struct UrlData *data,
struct connectdata *conn)
{
- size_t i;
+ long i;
for(i=0; i< data->numconnects; i++) {
if(!data->connects[i])
break;
@@ -1870,14 +1872,14 @@ static CURLcode Connect(struct UrlData *data,
conn->port = (data->use_port && allow_port)?data->use_port:PORT_DICT;
conn->remote_port = PORT_DICT;
conn->curl_do = Curl_dict;
- conn->curl_done = Curl_dict_done;
+ conn->curl_done = NULL; /* no DICT-specific done */
}
else if (strequal(conn->protostr, "LDAP")) {
conn->protocol |= PROT_LDAP;
conn->port = (data->use_port && allow_port)?data->use_port:PORT_LDAP;
conn->remote_port = PORT_LDAP;
conn->curl_do = Curl_ldap;
- conn->curl_done = Curl_ldap_done;
+ conn->curl_done = NULL; /* no LDAP-specific done */
}
else if (strequal(conn->protostr, "FILE")) {
conn->protocol |= PROT_FILE;