Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions runtime-light/stdlib/curl/curl-easy-functions.h
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ inline auto f$curl_setopt(kphp::web::curl::easy_type easy_id, int64_t option, co
return true;
}
case kphp::web::curl::CURLOPT::USERPWD: {
kphp::log::error("Unsupported CURL option");
kphp::log::error("unsupported CURL option");
}
default:
easy_ctx.set_errno(kphp::web::curl::CURLE::UNKNOWN_OPTION);
Expand Down Expand Up @@ -581,7 +581,7 @@ inline auto f$curl_getinfo(kphp::web::curl::easy_type easy_id, int64_t option =
co_return v->second.to_mixed();
}
case kphp::web::curl::CURLINFO::NUM_CONNECTS: {
kphp::log::error("Unsupported CURL info option");
kphp::log::error("unsupported CURL info option");
}
default:
co_return false;
Expand Down
Loading