summaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2007-10-12 18:49:14 +0000
committerDan Fandrich <dan@coneharvesters.com>2007-10-12 18:49:14 +0000
commit7831c1ae445b9920440dd40e52e6ead31dfbe962 (patch)
tree657a42cd3087ba841a0308e04f754813b87706b0 /lib/url.c
parent5ce3eb066e16ff9953a3912c2ac7ee149e6abaa3 (diff)
downloadcurl-7831c1ae445b9920440dd40e52e6ead31dfbe962.tar.gz
Fixed a few compile errors and warnings.
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/url.c b/lib/url.c
index bc3d235a8..59a2d09cd 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -194,7 +194,7 @@ extern sigjmp_buf curl_jmpenv;
* Protocol table.
*/
-static const struct Curl_handler * protocols[] = {
+static const struct Curl_handler * const protocols[] = {
#ifndef CURL_DISABLE_HTTP
&Curl_handler_http,
@@ -3020,7 +3020,7 @@ static CURLcode setup_range(struct SessionHandle *data)
static CURLcode setup_connection_internals(struct SessionHandle *data,
struct connectdata *conn)
{
- const struct Curl_handler * * pp;
+ const struct Curl_handler * const * pp;
const struct Curl_handler * p;
CURLcode result;
@@ -3028,7 +3028,7 @@ static CURLcode setup_connection_internals(struct SessionHandle *data,
/* Scan protocol handler table. */
- for (pp = protocols; p = *pp; pp++)
+ for (pp = protocols; (p = *pp) != NULL; pp++)
if (strequal(p->scheme, conn->protostr)) {
/* Protocol found in table. Perform setup complement if some. */
conn->handler = p;