commit 80c9647f807399e8d8bed8a18109a87ea8222f56 from: Stefan Sperling via: Thomas Adam date: Fri Mar 21 13:22:47 2025 UTC drop pointless imsgbuf_allow_fdpass() calls from gotctl commit - 841cedb75f273e076cacf79500e51e4748b8f876 commit + 80c9647f807399e8d8bed8a18109a87ea8222f56 blob - 68c7d4f5fcf7925bc71208957853d55efdf53b8e blob + de46b28e1688e0f673242c0fdd78785c32388f95 --- gotctl/gotctl.c +++ gotctl/gotctl.c @@ -166,7 +166,6 @@ cmd_info(int argc, char *argv[], int gotd_sock) if (imsgbuf_init(&ibuf, gotd_sock) == -1) return got_error_from_errno("imsgbuf_init"); - imsgbuf_allow_fdpass(&ibuf); if (imsg_compose(&ibuf, GOTD_IMSG_INFO, 0, 0, -1, NULL, 0) == -1) { imsgbuf_clear(&ibuf); @@ -223,7 +222,6 @@ cmd_stop(int argc, char *argv[], int gotd_sock) if (imsgbuf_init(&ibuf, gotd_sock) == -1) return got_error_from_errno("imsgbuf_init"); - imsgbuf_allow_fdpass(&ibuf); if (imsg_compose(&ibuf, GOTD_IMSG_STOP, 0, 0, -1, NULL, 0) == -1) { imsgbuf_clear(&ibuf);