Merge branch 'eb/mail'
* eb/mail: Fix git-format-patch -s
This commit is contained in:
commit
72afd3eea6
@ -220,8 +220,11 @@ int cmd_format_patch(int argc, const char **argv, char **envp)
|
||||
}
|
||||
else if (!strcmp(argv[i], "--signoff") ||
|
||||
!strcmp(argv[i], "-s")) {
|
||||
const char *committer = git_committer_info(1);
|
||||
const char *endpos = strchr(committer, '>');
|
||||
const char *committer;
|
||||
const char *endpos;
|
||||
setup_ident();
|
||||
committer = git_committer_info(1);
|
||||
endpos = strchr(committer, '>');
|
||||
if (!endpos)
|
||||
die("bogos committer info %s\n", committer);
|
||||
add_signoff = xmalloc(endpos - committer + 2);
|
||||
|
Loading…
Reference in New Issue
Block a user