Skip to content

Commit 64f8031

Browse files
committed
fix formatting
1 parent ce2eed2 commit 64f8031

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/http/client.zig

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,12 @@ pub const Request = struct {
460460

461461
if (self._secure) {
462462
connection.tls = .{
463-
.nonblocking = try tls.nb.Client().init(self._client.allocator, .{ .host = connection.host, .root_ca = self._client.root_ca, .insecure_skip_verify = self._tls_verify_host == false, .key_log_callback = tls.config.key_log.callback }),
463+
.nonblocking = try tls.nb.Client().init(self._client.allocator, .{
464+
.host = connection.host,
465+
.root_ca = self._client.root_ca,
466+
.insecure_skip_verify = self._tls_verify_host == false,
467+
.key_log_callback = tls.config.key_log.callback,
468+
}),
464469
};
465470

466471
async_handler.conn.protocol = .{

0 commit comments

Comments
 (0)