Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
reynir committed Sep 27, 2023
1 parent 5234999 commit 36d20f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine.ml
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ let maybe_push_reply config = function
Logs.info (fun m -> m "push request sent, received TLS payload %S" str);
let p_r = "PUSH_REPLY" in
let p_r_len = String.length p_r in
if String.starts_with str ~prexix:p_r
if String.starts_with str ~prefix:p_r
then
let opts = String.sub str p_r_len (String.length str - p_r_len) in
Config.merge_push_reply config opts
Expand Down

0 comments on commit 36d20f2

Please sign in to comment.