Code

add, merge, diff: do not use strcasecmp to compare config variable names
authorJonathan Nieder <jrnieder@gmail.com>
Sat, 14 May 2011 20:19:21 +0000 (15:19 -0500)
committerJunio C Hamano <gitster@pobox.com>
Sun, 15 May 2011 01:53:39 +0000 (18:53 -0700)
commit8c2be75fe117f5079087a6dfb07c573cc6716143
treedbd90c21ea5e73685899482249c8336cdbe42a36
parent375f8a032e9f47d362afd5ea2443f77bcba685cb
add, merge, diff: do not use strcasecmp to compare config variable names

The config machinery already makes section and variable names
lowercase when parsing them, so using strcasecmp for comparison just
feels wasteful.  No noticeable change intended.

Noticed-by: Jay Soffian <jaysoffian@gmail.com>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/add.c
merge-recursive.c
xdiff-interface.c