]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
WNM: Fix build without CONFIG_SME=y
authorJouni Malinen <j@w1.fi>
Mon, 28 May 2012 01:17:41 +0000 (18:17 -0700)
committerJouni Malinen <j@w1.fi>
Mon, 28 May 2012 01:17:41 +0000 (18:17 -0700)
Commit b6668734ab8ac235f129d1cd0aff4c4e1c922b41 missed #ifdef CONFIG_SME
protection around wpa_s->sme access.

Signed-hostap: Jouni Malinen <j@w1.fi>

wpa_supplicant/events.c

index 3e2fe18865184c8b600df257c974f62ac35dca08..61db0383e4b9048fdb49e93d538f7c364acfdb78 100644 (file)
@@ -1216,6 +1216,7 @@ static void wnm_bss_keep_alive(void *eloop_ctx, void *sock_ctx)
        /* TODO: send keep alive frame - better use some short unicast data
         * frame that gets protected if PTK is set */
 
+#ifdef CONFIG_SME
        if (wpa_s->sme.bss_max_idle_period) {
                unsigned int msec;
                msec = wpa_s->sme.bss_max_idle_period * 1024; /* times 1000 */
@@ -1224,6 +1225,7 @@ static void wnm_bss_keep_alive(void *eloop_ctx, void *sock_ctx)
                eloop_register_timeout(msec / 1000, msec % 1000 * 1000,
                                       wnm_bss_keep_alive, wpa_s, NULL);
        }
+#endif /* CONFIG_SME */
 }