summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-01-29 07:26:50 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-01-29 07:26:50 +0000
commit1bbe407a4d1c64bed2b99335e3eb448aa563263c (patch)
tree916deb7da4633b4c698f052472cd6e27676fc55f
parent513bc444218f5ac0c942b07abc7c9b94787858ec (diff)
downloadgnurl-1bbe407a4d1c64bed2b99335e3eb448aa563263c.tar.gz
gnurl-1bbe407a4d1c64bed2b99335e3eb448aa563263c.tar.bz2
gnurl-1bbe407a4d1c64bed2b99335e3eb448aa563263c.zip
The PUT stuff is never set! It is set with the UPLOAD...
-rw-r--r--src/main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 2f3f1edc2..465ac5e4b 100644
--- a/src/main.c
+++ b/src/main.c
@@ -109,7 +109,9 @@ typedef enum {
#define CONF_FOLLOWLOCATION (1<<23) /* use Location: Luke! */
#define CONF_GETTEXT (1<<24) /* use ASCII/text for transfer */
#define CONF_HTTPPOST (1<<25) /* multipart/form-data HTTP POST */
+#if 0
#define CONF_PUT (1<<27) /* PUT the input file */
+#endif
#define CONF_MUTE (1<<28) /* force NOPROGRESS */
#ifndef HAVE_STRDUP
@@ -1749,7 +1751,9 @@ operate(struct Configurable *config, int argc, char *argv[])
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION,
config->conf&CONF_FOLLOWLOCATION);
curl_easy_setopt(curl, CURLOPT_TRANSFERTEXT, config->conf&CONF_GETTEXT);
+#if 0
curl_easy_setopt(curl, CURLOPT_PUT, config->conf&CONF_PUT);
+#endif
curl_easy_setopt(curl, CURLOPT_MUTE, config->conf&CONF_MUTE);
curl_easy_setopt(curl, CURLOPT_USERPWD, config->userpwd);
curl_easy_setopt(curl, CURLOPT_PROXYUSERPWD, config->proxyuserpwd);