aboutsummaryrefslogtreecommitdiff
path: root/lib/ftp.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-12-02 13:40:12 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-12-02 13:40:12 +0000
commit1b99d33b59e86cf086cd0e8c6618f41108934fcf (patch)
tree4e7714084b11bc1c7b2b78fb85d34fc3ee0ef7bc /lib/ftp.c
parent800052dc50ace9748f607afc8f451afac948736b (diff)
fix compiler warnings
Diffstat (limited to 'lib/ftp.c')
-rw-r--r--lib/ftp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ftp.c b/lib/ftp.c
index 3f51dd638..b3dbb0735 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -405,7 +405,7 @@ CURLcode Curl_GetFTPResponse(ssize_t *nreadp, /* return number of bytes read */
return result;
}
-static char *ftpauth[]= {
+static const char *ftpauth[]= {
"SSL", "TLS", NULL
};