Browse Source

git-config --rename-section could rename wrong section

The "git-config --rename-section" implementation would match sections
that are substrings of the section name to be renamed.

Signed-off-by: Pavel Roskin <proski@gnu.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
maint
Pavel Roskin 18 years ago committed by Junio C Hamano
parent
commit
9673a0b182
  1. 2
      config.c

2
config.c

@ -896,7 +896,7 @@ int git_config_rename_section(const char *old_name, const char *new_name) @@ -896,7 +896,7 @@ int git_config_rename_section(const char *old_name, const char *new_name)
if (buf[i] != old_name[j++])
break;
}
if (buf[i] == ']') {
if (buf[i] == ']' && old_name[j] == 0) {
/* old_name matches */
ret++;
store.baselen = strlen(new_name);

Loading…
Cancel
Save