commit 52b119c266230d82148c26d259a94c5c424c58b3 from: Stefan Sperling date: Thu Mar 20 15:01:48 2025 UTC drop pointless imsgbuf_allow_fdpass() calls from gotctl commit - afc8f605e6be7e47151b1854508bbae037286845 commit + 52b119c266230d82148c26d259a94c5c424c58b3 blob - 64397924212186d5c5100ef589e31d0da89cee07 blob + a4d4fa1e38e55a4121a275a418311f3603111de3 --- gotctl/gotctl.c +++ gotctl/gotctl.c @@ -167,7 +167,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); @@ -224,7 +223,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);