From: Lawrence S. <ljs...@us...> - 2013-06-07 05:43:26
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via 74537233a9cef5befab18beb9c0a723dbc1039ef (commit) from efa97a42bbeaddb58b975d1ac67c28a42004d929 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 74537233a9cef5befab18beb9c0a723dbc1039ef Author: Lawrence Sebald <ljs...@us...> Date: Fri Jun 7 01:43:03 2013 -0400 strnicmp -> strcasecmp. ----------------------------------------------------------------------- Summary of changes: kernel/arch/dreamcast/fs/fs_iso9660.c | 2 +- kernel/exports/nmmgr.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/arch/dreamcast/fs/fs_iso9660.c b/kernel/arch/dreamcast/fs/fs_iso9660.c index c1690c1..26b98e1 100644 --- a/kernel/arch/dreamcast/fs/fs_iso9660.c +++ b/kernel/arch/dreamcast/fs/fs_iso9660.c @@ -496,7 +496,7 @@ static iso_dirent_t *find_object(const char *fn, int dir, else fnlen = strlen(fn); - if(!strnicmp(rrname, fn, fnlen) && ! *(rrname + fnlen)) { + if(!strcasecmp(rrname, fn, fnlen) && ! *(rrname + fnlen)) { if(!((dir << 1) ^ de->flags)) return de; } diff --git a/kernel/exports/nmmgr.c b/kernel/exports/nmmgr.c index 8cfc950..6f229e2 100644 --- a/kernel/exports/nmmgr.c +++ b/kernel/exports/nmmgr.c @@ -1,7 +1,7 @@ /* KallistiOS ##version## nmmgr.c - Copyright (C)2003 Dan Potter + Copyright (C) 2003 Dan Potter */ @@ -35,7 +35,7 @@ nmmgr_handler_t * nmmgr_lookup(const char *fn) { /* Scan the handler table and look for a path match */ LIST_FOREACH(cur, &nmmgr_handlers, list_ent) { - if(!strnicmp(cur->pathname, fn, strlen(cur->pathname))) + if(!strcasecmp(cur->pathname, fn, strlen(cur->pathname))) break; } hooks/post-receive -- A pseudo Operating System for the Dreamcast. |