Commit 590c5efb by Sven Strickroth

Rename method

Signed-off-by: Sven Strickroth <email@cs-ware.de>
parent 7dd28dde
...@@ -1178,7 +1178,7 @@ static int write_section(git_filebuf *file, const char *key) ...@@ -1178,7 +1178,7 @@ static int write_section(git_filebuf *file, const char *key)
return result; return result;
} }
static int needsQuote(const char *value) static int value_needs_surrounding_quote(const char *value)
{ {
const char *ptr = value; const char *ptr = value;
if (*value == ' ') if (*value == ' ')
...@@ -1315,7 +1315,7 @@ static int config_write(diskfile_backend *cfg, const char *key, const regex_t *p ...@@ -1315,7 +1315,7 @@ static int config_write(diskfile_backend *cfg, const char *key, const regex_t *p
/* Then replace the variable. If the value is NULL, it /* Then replace the variable. If the value is NULL, it
* means we want to delete it, so don't write anything. */ * means we want to delete it, so don't write anything. */
if (value != NULL) { if (value != NULL) {
if (needsQuote(value)) if (value_needs_surrounding_quote(value))
git_filebuf_printf(&file, "\t%s = \"%s\"\n", name, value); git_filebuf_printf(&file, "\t%s = \"%s\"\n", name, value);
else else
git_filebuf_printf(&file, "\t%s = %s\n", name, value); git_filebuf_printf(&file, "\t%s = %s\n", name, value);
...@@ -1378,7 +1378,7 @@ static int config_write(diskfile_backend *cfg, const char *key, const regex_t *p ...@@ -1378,7 +1378,7 @@ static int config_write(diskfile_backend *cfg, const char *key, const regex_t *p
if (reader->buffer.size > 0 && *(reader->buffer.ptr + reader->buffer.size - 1) != '\n') if (reader->buffer.size > 0 && *(reader->buffer.ptr + reader->buffer.size - 1) != '\n')
git_filebuf_write(&file, "\n", 1); git_filebuf_write(&file, "\n", 1);
if (needsQuote(value)) if (value_needs_surrounding_quote(value))
git_filebuf_printf(&file, "\t%s = \"%s\"\n", name, value); git_filebuf_printf(&file, "\t%s = \"%s\"\n", name, value);
else else
git_filebuf_printf(&file, "\t%s = %s\n", name, value); git_filebuf_printf(&file, "\t%s = %s\n", name, value);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment