Skip to content

Commit 3fb1cea

Browse files
D-Trivenicarlescufi
authored andcommitted
[noup] zephyr: Fix header file path
Fix header include path for eloop.h when including ctrl_iface_zephyr.h from another module. Issue is observed while compiling the Wi-Fi shell sample with enterprise mode support enabled. Include eloop.h in `ctrl_iface_zephyr.h` using a relative path, which causes a build failure when the file is included from outside the supplicant module. Build error: fatal error: eloop.h: No such file or directory Signed-off-by: Triveni Danda <[email protected]>
1 parent 91f95bf commit 3fb1cea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wpa_supplicant/ctrl_iface_zephyr.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include "utils/includes.h"
1010

1111
#include "utils/common.h"
12-
#include "eloop.h"
12+
#include "utils/eloop.h"
1313
#include "config.h"
1414
#include "eapol_supp/eapol_supp_sm.h"
1515
#include "wpa_supplicant_i.h"

0 commit comments

Comments
 (0)