Skip to content

Commit

Permalink
Fix leftover bool
Browse files Browse the repository at this point in the history
  • Loading branch information
erhudy committed Oct 3, 2023
1 parent ddac27c commit acd3a4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/in_http/http_prot.c
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ static int process_payload(struct flb_http *ctx, struct http_conn *conn,
size_t uncompressed_size = 0;

/* used when checking content-encoding */
bool gzip_compressed = false;
int gzip_compressed = FLB_FALSE;
int gzip_ret;

header = &session->parser.headers[MK_HEADER_CONTENT_TYPE];
Expand Down

0 comments on commit acd3a4d

Please sign in to comment.