Skip to content

Commit

Permalink
2.0.0 backport: Fixed HOG archiver sorting/lookups (thanks Chris!)
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jan 5, 2005
1 parent df02d97 commit 73fc059
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Expand Up @@ -4,6 +4,7 @@

-- stuff in the stable-1.0 branch, backported from 2.0.0 dev branch, etc ---

01052004 - Fixed HOG archiver sorting/file lookup (thanks, Chris!)
12162004 - Fixed some documentation/header comment typos (thanks, Gaetan!)
10302004 - Fixed a strcpy that should have been a strcat. (thanks, Tolga!)
Removed .cvsignore files (we're in a Subversion repository, now).
Expand Down
2 changes: 1 addition & 1 deletion archivers/hog.c
Expand Up @@ -301,7 +301,7 @@ static int HOG_isArchive(const char *filename, int forWriting)
static int hog_entry_cmp(void *_a, PHYSFS_uint32 one, PHYSFS_uint32 two)
{
HOGentry *a = (HOGentry *) _a;
return(strcmp(a[one].name, a[two].name));
return(__PHYSFS_platformStricmp(a[one].name, a[two].name));
} /* hog_entry_cmp */


Expand Down

0 comments on commit 73fc059

Please sign in to comment.