diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2007-07-12 21:11:10 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2007-07-12 21:11:10 +0000 |
commit | 49ce3e5160a9576e797bf87cef012b09d1c54ecb (patch) | |
tree | 9b8e476de272cfd92bb3d857aa3c6eef273140b7 /docs/examples/sepheaders.c | |
parent | 4a728747e6f8845e500910e397dfc99aaf4a7984 (diff) |
Fixed some compile warnings and errors and improved portability in the
examples.
Removed ftp3rdparty.c since libcurl doesn't support 3rd party FTP transfers
any longer.
Diffstat (limited to 'docs/examples/sepheaders.c')
-rw-r--r-- | docs/examples/sepheaders.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/sepheaders.c b/docs/examples/sepheaders.c index cf2f419d6..e35aebfb1 100644 --- a/docs/examples/sepheaders.c +++ b/docs/examples/sepheaders.c @@ -25,9 +25,9 @@ size_t write_data(void *ptr, size_t size, size_t nmemb, void *stream) int main(int argc, char **argv) { CURL *curl_handle; - char *headerfilename = "head.out"; + static const char *headerfilename = "head.out"; FILE *headerfile; - char *bodyfilename = "body.out"; + static const char *bodyfilename = "body.out"; FILE *bodyfile; curl_global_init(CURL_GLOBAL_ALL); |