From: nicm Date: Fri, 29 May 2015 14:52:10 +0000 (+0000) Subject: The case-insensitive flag (c) for string and search tests doesn't make X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=60ed151ab4254eb3b8942e5b429307d98cc4aaf1;p=openbsd The case-insensitive flag (c) for string and search tests doesn't make the entire match case sensitive, only lower case characters. --- 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); }