Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
924060929 committed Dec 11, 2024
1 parent 11eaa60 commit 2b47b97
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions be/src/http/http_channel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,7 @@ void HttpChannel::send_files(HttpRequest* request, const std::string& root_dir,
VLOG_DEBUG << "http channel send file " << file_path << ", size: " << file_size;

evbuffer_add_printf(evb.get(), "File-Name: %s\r\n", file.c_str());
#ifdef __APPLE__
evbuffer_add_printf(evb.get(), "Content-Length: %lld\r\n", file_size);
#else
evbuffer_add_printf(evb.get(), "Content-Length: %ld\r\n", file_size);
#endif
evbuffer_add_printf(evb.get(), "Content-Length: %" PRIi64 "\r\n", file_size);

evbuffer_add_printf(evb.get(), "\r\n");
if (file_size > 0) {
Expand Down

0 comments on commit 2b47b97

Please sign in to comment.