aboutsummaryrefslogtreecommitdiff
path: root/tests/libtest/lib524.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-03-03 13:09:30 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-03-03 13:09:30 +0000
commit7d68101f83a28323fa24b1f705881415ccbe6467 (patch)
tree0eba93f5995b9221367e1f39327790bc3eda3e70 /tests/libtest/lib524.c
parentaa50a00898495b2f3a4334ecbe4d81efa6dd6b6b (diff)
Prevent uploading to a URL that has no file name part.
Diffstat (limited to 'tests/libtest/lib524.c')
-rw-r--r--tests/libtest/lib524.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/libtest/lib524.c b/tests/libtest/lib524.c
new file mode 100644
index 000000000..be9f43466
--- /dev/null
+++ b/tests/libtest/lib524.c
@@ -0,0 +1,15 @@
+#include "test.h"
+
+int test(char *URL)
+{
+ CURLcode res;
+ CURL *curl = curl_easy_init();
+ curl_easy_setopt(curl, CURLOPT_URL, URL);
+ curl_easy_setopt(curl, CURLOPT_UPLOAD, 1);
+ curl_easy_setopt(curl, CURLOPT_VERBOSE, TRUE);
+
+ res = curl_easy_perform(curl);
+ curl_easy_cleanup(curl);
+ return (int)res;
+}
+