head 1.1; access; symbols; locks; strict; comment @// @; 1.1 date 2026.05.13.18.34.47; author ktnb; state Exp; branches; next ; commitid E0Bl6QnivA8zsGFG; desc @@ 1.1 log @mu: found more ctype bugs @ text @$NetBSD$ ctype(3) for NetBSD 11 --- lib/message/mu-message-part.cc.orig 2026-04-27 19:03:29.000000000 +0000 +++ lib/message/mu-message-part.cc @@@@ -49,7 +49,7 @@@@ cook(const std::string& fname, const std::vector clean.reserve(fname.length()); for (auto& c: basename(fname)) - if (seq_some(forbidden,[&](char fc){return ::iscntrl(c) || c == fc;})) + if (seq_some(forbidden,[&](char fc){return ::iscntrl(static_cast(c)) || c == fc;})) clean += '-'; else clean += c; @