From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Message-ID: <1383095144.12439.41.camel@joe-AO722> Subject: Re: [PATCH 1/2] tpm/tpm_ppi: Do not compare strcmp(a,b) == -1 From: Joe Perches To: Peter Huewe Cc: Ashley Lai , Rajiv Andrade , Marcel Selhorst , tpmdd-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org, Xiaoyan Zhang , Gang Wei , stable@vger.kernel.org Date: Tue, 29 Oct 2013 18:05:44 -0700 In-Reply-To: <1383093628-31580-1-git-send-email-peterhuewe@gmx.de> References: <1383093628-31580-1-git-send-email-peterhuewe@gmx.de> Content-Type: text/plain; charset="ISO-8859-1" Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: On Wed, 2013-10-30 at 01:40 +0100, Peter Huewe wrote: > strcmp does return the difference between two strings not only -1,0,1 > consequently > if (strcmp (a,b) == -1) > might lead to taking the wrong branch > > -> compare with <= instead. lib/string.c:strcmp returns only -1,0,1 so that's what the arch versions should do too. However, arch implementations do vary... fyi: using if (strcmp(foo, bar) < 0) is canonical. There are no existing <= -1 uses.