diff options
author | Junio C Hamano <junkio@cox.net> | 2005-12-11 16:49:45 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-12-11 16:49:45 -0800 |
commit | a9572072f0ab0ac97e64b0dc01254a3ad95befe1 (patch) | |
tree | 2375e3b4aea11444375f9f587c8ca4cd8d22d6d0 /config.c | |
parent | 423325a2d24638ddcc82ce47be5e40be550f4507 (diff) | |
parent | b825e6ff5d003db8efd1ed43cdbbb9d637df0a0c (diff) |
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -458,12 +458,6 @@ int git_config_set_multivar(const char* key, const char* value, * If .git/config does not exist yet, write a minimal version. */ if (stat(config_filename, &st)) { - static const char contents[] = - "#\n" - "# This is the config file\n" - "#\n" - "\n"; - free(store.key); /* if nothing to unset, error out */ @@ -474,8 +468,6 @@ int git_config_set_multivar(const char* key, const char* value, } store.key = (char*)key; - - write(fd, contents, sizeof(contents)-1); store_write_section(fd, key); store_write_pair(fd, key, value); } else{ |