]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
NAN: Remove excessive debug print about the next timer
authorAndrei Otcheretianski <andrei.otcheretianski@intel.com>
Tue, 26 Nov 2024 09:10:10 +0000 (11:10 +0200)
committerJouni Malinen <j@w1.fi>
Mon, 23 Dec 2024 11:04:58 +0000 (13:04 +0200)
As it polutes the log too much.

Signed-off-by: Andrei Otcheretianski <andrei.otcheretianski@intel.com>
src/common/nan_de.c

index 0e6b4d5fddcccdf0c7d2cdecdc1627375f9f1567..2c1d0c4dc5be9141f9e308a0e82bf4e8a55d130c 100644 (file)
@@ -680,7 +680,7 @@ static void nan_de_timer(void *eloop_ctx, void *timeout_ctx)
 
        if (next == 0)
                next = 1;
-       wpa_printf(MSG_DEBUG, "NAN: Next timer in %u ms", next);
+
        eloop_register_timeout(next / 1000, (next % 1000) * 1000, nan_de_timer,
                               de, NULL);
 }