Ticket #11759: patch-macports-case-sensitive-uninstall.diff
File patch-macports-case-sensitive-uninstall.diff, 483 bytes (added by raimue (Rainer Müller), 17 years ago) |
---|
-
pextlib1.0/filemap.c
1003 1003 if (inRoot->fNodeType == kLeaf) 1004 1004 { 1005 1005 /* it's a leaf. Does the value match? */ 1006 if (strc mp(((SLeaf*) inRoot)->fValue, inValue) == 0)1006 if (strcasecmp(((SLeaf*) inRoot)->fValue, inValue) == 0) 1007 1007 { 1008 1008 /* It matches. */ 1009 1009 char* thePath = ckalloc(inSubpathLen + NAME_MAX + 1);