Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

modified as per tooling suggestions [changelog skip] #2379

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion ext/puma_http11/mini_ssl.c
Expand Up @@ -142,7 +142,7 @@ VALUE engine_init_server(VALUE self, VALUE mini_ssl_ctx) {
VALUE obj;
SSL_CTX* ctx;
SSL* ssl;
int min, ssl_options;
int ssl_options;

ms_conn* conn = engine_alloc(self, &obj);

Expand Down
2 changes: 1 addition & 1 deletion lib/puma/server.rb
Expand Up @@ -694,7 +694,7 @@ def handle_request(req, lines)
to_add = {}
end

to_add[k.gsub(",", "_")] = v
to_add[k.tr(',', '_')] = v
end
end

Expand Down