]> git.ipfire.org Git - thirdparty/git.git/commit
Make git config variable names case-insensitive
authorLinus Torvalds <torvalds@osdl.org>
Wed, 12 Oct 2005 01:47:34 +0000 (18:47 -0700)
committerJunio C Hamano <junkio@cox.net>
Wed, 12 Oct 2005 01:47:34 +0000 (18:47 -0700)
commit128af9d1ef6c26b94d14c4dd0028c5dda8d6dd82
tree8123c55979441bf9a3933ca3ece99fb9f9f54e1d
parente1b10391eabdaaa4c89c53099dd96d5f9d978719
Make git config variable names case-insensitive

They always were meant to be case-insensitive, but I had missed one
"tolower()", making that not true.

The actual _values_ aren't case-insensitive, of course, although some uses
of them may be (ie boolean parsing uses "strcasecmp()" to match against
the strings "true" and "false").

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
config.c