From 60ed151ab4254eb3b8942e5b429307d98cc4aaf1 Mon Sep 17 00:00:00 2001 From: nicm Date: Fri, 29 May 2015 14:52:10 +0000 Subject: [PATCH] The case-insensitive flag (c) for string and search tests doesn't make the entire match case sensitive, only lower case characters. --- usr.bin/file/magic-test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/file/magic-test.c b/usr.bin/file/magic-test.c index 128116d6785..7394c0fbcb2 100644 --- a/usr.bin/file/magic-test.c +++ b/usr.bin/file/magic-test.c @@ -1,4 +1,4 @@ -/* $OpenBSD: magic-test.c,v 1.3 2015/04/25 16:35:47 brynet Exp $ */ +/* $OpenBSD: magic-test.c,v 1.4 2015/05/29 14:52:10 nicm Exp $ */ /* * Copyright (c) 2015 Nicholas Marriott @@ -38,7 +38,7 @@ magic_one_eq(char a, char b, int cflag) { if (a == b) return (1); - if (cflag && tolower((u_char)a) == tolower((u_char)b)) + if (cflag && islower((u_char)b) && tolower((u_char)a) == (u_char)b) return (1); return (0); } -- 2.20.1