Re: [libvirt] [PATCH] maint: avoid locale-sensitivity in string case comparisons

2011-03-31 Thread Eric Blake
On 03/30/2011 10:44 PM, Daniel Veillard wrote: > On Wed, Mar 30, 2011 at 08:29:53PM -0600, Eric Blake wrote: >> strcase{cmp/str} have the drawback of being sensitive to the global >> locale; this is unacceptable in a library setting. Prefer a >> hard-coded C locale alternative for all but virsh, w

Re: [libvirt] [PATCH] maint: avoid locale-sensitivity in string case comparisons

2011-03-30 Thread Daniel Veillard
On Wed, Mar 30, 2011 at 08:29:53PM -0600, Eric Blake wrote: > strcase{cmp/str} have the drawback of being sensitive to the global > locale; this is unacceptable in a library setting. Prefer a > hard-coded C locale alternative for all but virsh, which is user > facing and where the global locale is

[libvirt] [PATCH] maint: avoid locale-sensitivity in string case comparisons

2011-03-30 Thread Eric Blake
strcase{cmp/str} have the drawback of being sensitive to the global locale; this is unacceptable in a library setting. Prefer a hard-coded C locale alternative for all but virsh, which is user facing and where the global locale isn't changing externally. * .gnulib: Update to latest, for c-strcase