]> git.scripts.mit.edu Git - git.git/blobdiff - builtin/commit.c
upload-pack: bump keepalive default to 5 seconds
[git.git] / builtin / commit.c
index d21d07a1a8e9fbc365a4555a0f9e81d0c1f2a7d0..d2f30d960a71e41da88d6cc4201cbdca168b8648 100644 (file)
@@ -702,7 +702,7 @@ static int prepare_to_commit(const char *index_file, const char *prefix,
                        previous = eol;
                }
 
-               append_signoff(&sb, ignore_footer);
+               append_signoff(&sb, ignore_footer, 0);
        }
 
        if (fwrite(sb.buf, 1, sb.len, s->fp) < sb.len)
@@ -955,7 +955,7 @@ static const char *read_commit_message(const char *name)
        if (!commit)
                die(_("could not lookup commit %s"), name);
        out_enc = get_commit_output_encoding();
-       return logmsg_reencode(commit, out_enc);
+       return logmsg_reencode(commit, NULL, out_enc);
 }
 
 static int parse_and_validate_options(int argc, const char *argv[],