Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=sb+1MYKi; dkim=fail reason="signature verification failed" (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=KcFkbKvr Received: by mail.netbsd.org (Postfix, from userid 605) id E4F8784EA8; Sun, 14 Apr 2024 15:21:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713108082; bh=vTf9nMehQ+yE3xil7QVv6EOQcpB3GgcsaaJ3BNHvRj0=; h=Date:From:Subject:To:List-Id:Reply-To:List-Unsubscribe; b=sb+1MYKiO59qIDBxrSp8/iOS/zv8tLJVX6sNpc9xH9vYxlUff7RAIpMZ8O/hiHTb+ 28/vhMASffbaN80bEliZR7reeDAhzkbtTCc7FJbhCww7rZZaho87030oWL+aoIe3YX n6Ve7DmZX72lGlLFXOh2L/9vWrndPjtHmwC11gb8= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CFC7A84E74 for ; Sun, 14 Apr 2024 15:21:20 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id i9a2-p2RBGcz for ; Sun, 14 Apr 2024 15:21:20 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6202C84CCA for ; Sun, 14 Apr 2024 15:21:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713108080; bh=vTf9nMehQ+yE3xil7QVv6EOQcpB3GgcsaaJ3BNHvRj0=; h=Date:From:Subject:To:Reply-To; b=KcFkbKvr7HLcShbMv9Wn2J9SyGRXtAuTbeyhszSkhEmoTuQoZt3R2ENmHXIObb4KA K4fFUdH+hDfXCm5/DKoJ4FoAXg2tF9NmBLBr8Q9zjnX5973dRRqANU28kOFt5wK2A6 2nMu47UiyLSPEUrs0qEOIaWKIJPGVULyoMkltCBc= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 57BA2FA2C; Sun, 14 Apr 2024 15:21:20 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Date: Sun, 14 Apr 2024 15:21:20 +0000 From: "Roland Illig" Subject: CVS commit: src/usr.bin/make To: source-changes@NetBSD.org X-Mailer: log_accum Message-Id: <20240414152120.57BA2FA2C@cvs.NetBSD.org> Sender: source-changes-owner@NetBSD.org List-Id: Precedence: bulk Reply-To: source-changes-d@NetBSD.org Mail-Reply-To: "Roland Illig" Mail-Followup-To: source-changes-d@NetBSD.org List-Unsubscribe: Module Name: src Committed By: rillig Date: Sun Apr 14 15:21:20 UTC 2024 Modified Files: src/usr.bin/make: str.c Log Message: make: make string matching platform-independent Previously, whether the character range '[a-รค]' matched, depended on the signedness of the plain 'char' type. Since make operates on byte strings and does not support UTF-8 or other multi-byte character encodings, this edge case is not expected to occur in practice. No change in the unit tests as this edge case is not covered by tests. To generate a diff of this commit: cvs rdiff -u -r1.102 -r1.103 src/usr.bin/make/str.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.