1
0
mirror of https://github.com/bol-van/zapret.git synced 2025-05-01 11:22:57 +03:00

nfqws: fix buffer signedness for nfq_handle_packet()

This commit is contained in:
LiviaMedeiros 2024-08-13 23:19:49 +08:00
parent 94c848eab5
commit a833793a15
No known key found for this signature in database
GPG Key ID: 691C0F6AF4A67582

@ -156,7 +156,7 @@ static int nfq_main(void)
struct nfq_handle *h = NULL; struct nfq_handle *h = NULL;
struct nfq_q_handle *qh = NULL; struct nfq_q_handle *qh = NULL;
int fd,rv; int fd,rv;
uint8_t buf[16384] __attribute__((aligned)); char buf[16384] __attribute__((aligned));
printf("opening library handle\n"); printf("opening library handle\n");
h = nfq_open(); h = nfq_open();