summaryrefslogtreecommitdiffstats
path: root/sys/compat
diff options
context:
space:
mode:
authorwpaul <wpaul@FreeBSD.org>2004-06-04 04:45:38 +0000
committerwpaul <wpaul@FreeBSD.org>2004-06-04 04:45:38 +0000
commitea3e28a2d3c34ae66cfed291d94bac02adfbdcf4 (patch)
treec1f4655498aa5646a43c2aa8c71c38975da93fac /sys/compat
parent0adcaff459d146a407ff60aad41d491cdeb3a10c (diff)
downloadFreeBSD-src-ea3e28a2d3c34ae66cfed291d94bac02adfbdcf4.zip
FreeBSD-src-ea3e28a2d3c34ae66cfed291d94bac02adfbdcf4.tar.gz
Grrr. Really check subr_ndis.c in this time. (fixed my_strcasecmp())
Diffstat (limited to 'sys/compat')
-rw-r--r--sys/compat/ndis/subr_ndis.c32
1 files changed, 19 insertions, 13 deletions
diff --git a/sys/compat/ndis/subr_ndis.c b/sys/compat/ndis/subr_ndis.c
index fe673b4..4d96d46 100644
--- a/sys/compat/ndis/subr_ndis.c
+++ b/sys/compat/ndis/subr_ndis.c
@@ -130,7 +130,7 @@ static ndis_status ndis_encode_parm(ndis_miniport_block *,
struct sysctl_oid *, ndis_parm_type, ndis_config_parm **);
static ndis_status ndis_decode_parm(ndis_miniport_block *,
ndis_config_parm *, char *);
-static int my_strcasecmp(const char *, const char *, int);
+static int my_strcasecmp(const char *, const char *);
__stdcall static void ndis_read_cfg(ndis_status *, ndis_config_parm **,
ndis_handle, ndis_unicode_string *, ndis_parm_type);
__stdcall static void ndis_write_cfg(ndis_status *, ndis_handle,
@@ -557,19 +557,27 @@ ndis_encode_parm(block, oid, type, parm)
}
static int
-my_strcasecmp(s1, s2, len)
+my_strcasecmp(s1, s2)
const char *s1;
const char *s2;
- int len;
{
- int i;
+ char a, b;
- for (i = 0; i < len; i++) {
- if (toupper(s1[i]) != toupper(s2[i]))
- return(1);
- }
+ /*
+ * In the kernel, toupper() is a macro. Have to be careful
+ * not to use pointer arithmetic when passing it arguments.
+ */
+
+ while(1) {
+ a = *s1;
+ b = *s2++;
+ if (toupper(a) != toupper(b))
+ break;
+ if (*s1++ == 0)
+ return(0);
+ }
- return(0);
+ return (*(const unsigned char *)s1 - *(const unsigned char *)(s2 - 1));
}
__stdcall static void
@@ -607,8 +615,7 @@ ndis_read_cfg(status, parm, cfg, key, type)
*/
TAILQ_FOREACH(e, &sc->ndis_ctx, link) {
oidp = e->entry;
- if (my_strcasecmp(oidp->oid_name,
- keystr, strlen(keystr)) == 0) {
+ if (my_strcasecmp(oidp->oid_name, keystr) == 0) {
if (strcmp((char *)oidp->oid_arg1, "UNSET") == 0) {
free(keystr, M_DEVBUF);
*status = NDIS_STATUS_FAILURE;
@@ -704,8 +711,7 @@ ndis_write_cfg(status, cfg, key, parm)
TAILQ_FOREACH(e, &sc->ndis_ctx, link) {
oidp = e->entry;
- if (my_strcasecmp(oidp->oid_name,
- keystr, strlen(keystr)) == 0) {
+ if (my_strcasecmp(oidp->oid_name, keystr) == 0) {
/* Found it, set the value. */
strcpy((char *)oidp->oid_arg1, val);
free(keystr, M_DEVBUF);
OpenPOWER on IntegriCloud