From: Andrei Otcheretianski Date: Tue, 26 Nov 2024 09:10:10 +0000 (+0200) Subject: NAN: Remove excessive debug print about the next timer X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53d15ddc58e8005343e3128b4c47c237206f673f;p=thirdparty%2Fhostap.git NAN: Remove excessive debug print about the next timer As it polutes the log too much. Signed-off-by: Andrei Otcheretianski --- diff --git a/src/common/nan_de.c b/src/common/nan_de.c index 0e6b4d5fd..2c1d0c4dc 100644 --- a/src/common/nan_de.c +++ b/src/common/nan_de.c @@ -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); }