1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00

- Changed strcmp to strncmp for checking the CIS manufacturer strings,

since we only store CIS_MAXSTR data, and the users may stick the
  'entire' CIS string returned from the card in /etc/pccard.conf and
  cause the comparison to (bogusly) fail.

Submitted by:	Brad Karp <karp@eecs.harvard.edu>
This commit is contained in:
Nate Williams 1997-12-08 06:35:07 +00:00
parent 78922e413c
commit 50b5ec4154
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=31621

View File

@ -26,7 +26,7 @@
#ifndef lint
static const char rcsid[] =
"$Id: cardd.c,v 1.21 1997/11/19 02:31:37 nate Exp $";
"$Id: cardd.c,v 1.22 1997/11/25 19:15:59 nate Exp $";
#endif /* not lint */
#include <fcntl.h>
@ -288,8 +288,8 @@ card_inserted(struct slot *sp)
dumpcis(sp->cis);
#endif
for (cp = cards; cp; cp = cp->next)
if (strcmp(cp->manuf, sp->cis->manuf) == 0 &&
strcmp(cp->version, sp->cis->vers) == 0)
if (strncmp(cp->manuf, sp->cis->manuf, CIS_MAXSTR) == 0 &&
strncmp(cp->version, sp->cis->vers, CIS_MAXSTR) == 0)
break;
sp->card = cp;
#if 0