]> granicus.if.org Git - curl/commitdiff
curl: expanded the -XHEAD warning text
authorDaniel Stenberg <daniel@haxx.se>
Tue, 24 Nov 2015 09:11:06 +0000 (10:11 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 24 Nov 2015 09:11:06 +0000 (10:11 +0100)
... to also mention the specific options used.

src/tool_helpers.c

index e264ac795c3ad919f462e55bfaa1f30f178d6048..5661ac9d91ed9b45dfa7ea885a725244d15400bc 100644 (file)
@@ -110,7 +110,7 @@ void customrequest_helper(struct OperationConfig *config, HttpReq req,
   }
   else if(curl_strequal(method, "head")) {
     warnf(config->global,
-          "Setting custom HTTP method to HEAD may not work the way you "
-          "want.\n");
+          "Setting custom HTTP method to HEAD with -X/--request may not work "
+          "the way you want. Consider using -I/--head instead.\n");
   }
 }