Browse Source

Fix compiler issue with CONFIG_TESTING_OPTIONS

Use the preprocessor conditional "ifdef" instead of "if" before
CONFIG_TESTING_OPTIONS to prevent an issue on build systems that treat
undefined preprocessor identifiers as an error.

Signed-off-by: David Messer <david.messer@garmin.com>
David Messer 7 years ago
parent
commit
82424732af
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/ap/wpa_auth.c

+ 1 - 1
src/ap/wpa_auth.c

@@ -4543,7 +4543,7 @@ void wpa_auth_get_fils_aead_params(struct wpa_state_machine *sm,
 #endif /* CONFIG_FILS */
 #endif /* CONFIG_FILS */
 
 
 
 
-#if CONFIG_TESTING_OPTIONS
+#ifdef CONFIG_TESTING_OPTIONS
 
 
 int wpa_auth_resend_m1(struct wpa_state_machine *sm, int change_anonce,
 int wpa_auth_resend_m1(struct wpa_state_machine *sm, int change_anonce,
 		       void (*cb)(void *ctx1, void *ctx2),
 		       void (*cb)(void *ctx1, void *ctx2),