Browse Source
nfqws: fix buffer signedness for `nfq_handle_packet()`
pull/268/head
LiviaMedeiros
2 years ago
No known key found for this signature in database
GPG Key ID: 691C0F6AF4A67582
1 changed files with
1 additions and
1 deletions
-
nfq/nfqws.c
|
|
|
@ -156,7 +156,7 @@ static int nfq_main(void) |
|
|
|
struct nfq_handle *h = NULL; |
|
|
|
struct nfq_q_handle *qh = NULL; |
|
|
|
int fd,rv; |
|
|
|
uint8_t buf[16384] __attribute__((aligned)); |
|
|
|
char buf[16384] __attribute__((aligned)); |
|
|
|
|
|
|
|
printf("opening library handle\n"); |
|
|
|
h = nfq_open(); |
|
|
|
|