Fix wrong strncmp test.

This commit is contained in:
fvdl 1998-10-04 09:40:09 +00:00
parent f10fec8d32
commit 19f71dc8ff
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: linux_exec_elf32.c,v 1.34 1998/10/04 00:02:32 fvdl Exp $ */
/* $NetBSD: linux_exec_elf32.c,v 1.35 1998/10/04 09:40:09 fvdl Exp $ */
/*-
* Copyright (c) 1995, 1998 The NetBSD Foundation, Inc.
@ -207,7 +207,7 @@ ELFNAME2(linux,signature)(p, epp, eh)
testp = (char *)notep;
testp[16] = '\0';
if (strncmp(&testp[8], "linux", 5) != 0) {
if (!strncmp(&testp[8], "linux", 5) != 0) {
error = 0;
goto out3;
}