3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2026-02-10 22:47:56 +01:00

fils: Fix build issue with missing _GNU_SOURCE

CC       src/fils.o
src/fils.c: In function ‘fils_erp_tx_func’:
src/fils.c:117:16: error: implicit declaration of function ‘alloca’; did you mean ‘calloc’? [-Wimplicit-function-declaration]
  117 |         rsne = alloca(256);
      |                ^~~~~~
      |                calloc
src/fils.c:117:14: error: assignment to ‘uint8_t *’ {aka ‘unsigned char *’} from ‘int’ makes pointer from integer without a cast -Wint-conversion]
  117 |         rsne = alloca(256);
      |              ^
src/fils.c: In function ‘fils_derive_key_data’:
src/fils.c:301:22: error: assignment to ‘uint8_t *’ {aka ‘unsigned char *’} from ‘int’ makes pointer from integer without a cast -Wint-conversion]
  301 |                 rsne = alloca(256);
      |                      ^
src/fils.c: In function ‘fils_free’:
src/fils.c:350:9: error: implicit declaration of function ‘explicit_bzero’ [-Wimplicit-function-declaration]
  350 |         explicit_bzero(fils->ick, sizeof(fils->ick));
      |         ^~~~~~~~~~~~~~
This commit is contained in:
Marcel Holtmann 2026-02-10 09:17:29 +01:00
parent b1bcc47ffe
commit 30049f5822

View File

@ -25,6 +25,8 @@
#include <config.h>
#endif
#define _GNU_SOURCE
#include <stdlib.h>
#include <ell/ell.h>
#include "ell/useful.h"