Skip to content

Commit

Permalink
add missing break in unix protocol handler switch
Browse files Browse the repository at this point in the history
closes issue #115
  • Loading branch information
jtsiomb committed Feb 5, 2025
1 parent 22d9730 commit f19202e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/proto_unix.c
Original file line number Diff line number Diff line change
Expand Up @@ -568,6 +568,7 @@ static int handle_request(struct client *c, struct reqresp *req)
case REQ_SCFG_SWAPYZ:
cfg.swapyz = req->data[0] ? 1 : 0;
sendresp(c, req, 0);
break;

case REQ_GCFG_SWAPYZ:
req->data[0] = cfg.swapyz;
Expand Down

0 comments on commit f19202e

Please sign in to comment.