Commit fad96046 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

curl: customrequest_helper: deal with NULL custom method

parent 0e17369f
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -102,7 +102,9 @@ void customrequest_helper(struct OperationConfig *config, HttpReq req,
    "POST"
  };

  if(curl_strequal(method, dflt[req])) {
  if(!method)
    ;
  else if(curl_strequal(method, dflt[req])) {
    notef(config->global, "Unnecessary use of -X or --request, %s is already "
          "inferred.\n", dflt[req]);
  }