[pacman-dev] pacman 3.1 release ?
Xavier
shiningxc at gmail.com
Fri Aug 24 17:50:35 EDT 2007
On Fri, Aug 24, 2007 at 11:37:42PM +0200, VMiklos wrote:
> hmm, IGNOREPKG still works, right. but ignorepkg will no longer work,
> right?
>
pacman 3.0 :
key = _alpm_strtoupper(key);
} else if(strcmp(origkey, "IgnorePkg") == 0 || strcmp(key, "IGNOREPKG") == 0)
pacman 3.1 :
upperkey = strtoupper(strdup(key));
} else if(strcmp(key, "IgnorePkg") == 0 || strcmp(upperkey, "IGNOREPKG") == 0)
In both cases, a case insensitive comparison is done.
If I understood correctly, this comp does not work correctly with tr_TR
locale, so a case sensitive one had to be added as well.
More information about the pacman-dev
mailing list