Browse Source

nfqws: fix buffer signedness for `nfq_handle_packet()`

pull/268/head
LiviaMedeiros 2 years ago
parent
commit
a833793a15
No known key found for this signature in database GPG Key ID: 691C0F6AF4A67582
  1. 2
      nfq/nfqws.c

2
nfq/nfqws.c

@ -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();

Loading…
Cancel
Save