#505514, as correctly pointed out by Antonio (anton@concord.ru), trying to
authorDaniel Stenberg <daniel@haxx.se>
Sat, 19 Jan 2002 11:08:05 +0000 (11:08 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 19 Jan 2002 11:08:05 +0000 (11:08 +0000)
post a non-existing file should include nothing, not an error text!

lib/formdata.c

index c767da9..bc137cf 100644 (file)
@@ -1155,10 +1155,13 @@ struct FormData *Curl_getFormData(struct HttpPost *post,
          }
           if(fileread != stdin)
             fclose(fileread);
-       } else {
-         size += AddFormData(&form, "[File wasn't found by client]", 0);
        }
-      } else {
+        else {
+          /* File wasn't found, add a nothing field! */
+         size += AddFormData(&form, "", 0);
+       }
+      }
+ else {
        /* include the contents we got */
        size += AddFormData(&form, post->contents, post->contentslength);
       }