head 1.1; access; symbols; locks; strict; comment @ * @; 1.1 date 2026.04.15.07.49.39; author kikadf; state Exp; branches; next ; commitid iPzvSB1IdGjZM1CG; desc @@ 1.1 log @ wl-clipboard: new package This project implements two command-line Wayland clipboard utilities, wl-copy and wl-paste, that let you easily copy data between the clipboard and Unix pipes, sockets, files and so on. @ text @$NetBSD$ * Fix ctype usage --- src/wl-paste.c.orig 2026-03-05 17:45:33.262067890 +0000 +++ src/wl-paste.c @@@@ -139,7 +139,7 @@@@ static const char *mime_type_to_request( try_any_text; } else if (strchr(options.explicit_type, '/') != NULL) { try_explicit; - } else if (isupper(options.explicit_type[0])) { + } else if (isupper((unsigned char)options.explicit_type[0])) { try_explicit; } else { try_explicit; @