Module Name: src Committed By: christos Date: Mon Sep 23 15:20:04 UTC 2024
Modified Files: src/external/bsd/wpa/dist/src/common: dpp.c Log Message: fix printf format. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/bsd/wpa/dist/src/common/dpp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/external/bsd/wpa/dist/src/common/dpp.c diff -u src/external/bsd/wpa/dist/src/common/dpp.c:1.3 src/external/bsd/wpa/dist/src/common/dpp.c:1.4 --- src/external/bsd/wpa/dist/src/common/dpp.c:1.3 Wed Sep 18 11:09:31 2024 +++ src/external/bsd/wpa/dist/src/common/dpp.c Mon Sep 23 11:20:04 2024 @@ -2737,8 +2737,8 @@ int dpp_key_expired(const char *timestam } if (now.sec > utime) { - wpa_printf(MSG_DEBUG, "DPP: Key has expired (%lu < %lu)", - utime, now.sec); + wpa_printf(MSG_DEBUG, "DPP: Key has expired (%jd < %jd)", + (intmax_t)utime, (intmax_t)now.sec); return 1; }