commit 632c1cc27eb76b3c3e887c28fc26b4f82960f967 from: Omar Polo date: Sat Jan 29 14:54:16 2022 UTC main_imsg_compose_listener: use (peerid) 0 instead of imsg.hdr.pid it's wrong to pass the pid instead of the peerid and the peerid is not important anyway for the VERBOSE request. commit - 865dd3238a329a69864b4b9686567aa056d91c66 commit + 632c1cc27eb76b3c3e887c28fc26b4f82960f967 blob - 76873827510ab81bb5ff34ce7b3afebef20ae857 blob + a6da9ca178d58ef3bac644af4c0672ffdf49dbc2 --- kamid/control.c +++ kamid/control.c @@ -283,7 +283,7 @@ control_dispatch_imsg(int fd, short event, void *bula) /* Forward to all other processes. */ main_imsg_compose_listener(imsg.hdr.type, -1, - imsg.hdr.pid, imsg.data, IMSG_DATA_SIZE(imsg)); + 0, imsg.data, IMSG_DATA_SIZE(imsg)); memcpy(&verbose, imsg.data, sizeof(verbose)); log_setverbose(verbose);