commit 865dd3238a329a69864b4b9686567aa056d91c66 from: Omar Polo date: Sat Jan 29 13:23:17 2022 UTC client_send_listener: send correct peerid fix typo in previous commit where `0' was used instead of peerid. Spotted by cage, thanks! commit - f4bc229f64047cd8b9a2802c312946aee3240295 commit + 865dd3238a329a69864b4b9686567aa056d91c66 blob - aadf317de3e8ea13055245a097ed246217c0c34d blob + c29b5422238ee627fed1bfecdfd94e454b6fa2cd --- kamid/client.c +++ kamid/client.c @@ -401,7 +401,7 @@ client_send_listenerp(int type, uint32_t peerid, const static int client_send_listener(int type, const void *data, uint16_t len) { - return client_send_listenerp(type, 0, data, len); + return client_send_listenerp(type, peerid, data, len); } /* set qid fields from sb */