diff options
| author | Dan Fandrich <dan@coneharvesters.com> | 2004-12-15 02:32:04 +0000 | 
|---|---|---|
| committer | Dan Fandrich <dan@coneharvesters.com> | 2004-12-15 02:32:04 +0000 | 
| commit | a28b32aa45e5f4ce9d2bc85a840884336dd87f27 (patch) | |
| tree | cfb4f355cbd0cad25ca0bc1d60cf8946b550c446 /lib/ftp.c | |
| parent | 1ba47e7af9edfa682faba73df8bf0dc240facb19 (diff) | |
Make some arrays of pointers const, too.
Diffstat (limited to 'lib/ftp.c')
| -rw-r--r-- | lib/ftp.c | 7 | 
1 files changed, 3 insertions, 4 deletions
@@ -442,10 +442,6 @@ CURLcode Curl_GetFTPResponse(ssize_t *nreadp, /* return number of bytes read */    return result;  } -static const char *ftpauth[]= { -  "SSL", "TLS", NULL -}; -  /*   * Curl_ftp_connect() should do everything that is to be considered a part of   * the connection phase. @@ -459,6 +455,9 @@ CURLcode Curl_ftp_connect(struct connectdata *conn)    struct FTP *ftp;    CURLcode result;    int ftpcode, trynum; +  static const char * const ftpauth[]  = { +    "SSL", "TLS", NULL +  };    ftp = (struct FTP *)malloc(sizeof(struct FTP));    if(!ftp)  | 
