diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-11-27 11:06:38 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-11-27 11:06:38 +0900 |
commit | 51affbd52ddc09f3af156031da8d5d29dfcd1801 (patch) | |
tree | 895461723904310b38e2ca7e935181427b5fa25a | |
parent | Merge branch 'ew/rebase-mboxrd' (diff) | |
parent | config: flip return value of write_section() (diff) | |
download | tgif-51affbd52ddc09f3af156031da8d5d29dfcd1801.tar.xz |
Merge branch 'rs/config-write-section-fix'
There was a recent semantic mismerge in the codepath to write out a
section of a configuration section, which has been corrected.
* rs/config-write-section-fix:
config: flip return value of write_section()
-rw-r--r-- | config.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2329,7 +2329,7 @@ static ssize_t write_section(int fd, const char *key) struct strbuf sb = store_create_section(key); ssize_t ret; - ret = write_in_full(fd, sb.buf, sb.len) == sb.len; + ret = write_in_full(fd, sb.buf, sb.len); strbuf_release(&sb); return ret; |