format-patch: print in-body "From" only when needed
Commit a908047 taught format-patch the "--from" option,
which places the author ident into an in-body from header,
and uses the committer ident in the rfc822 from header. The
documentation claims that it will omit the in-body header
when it is the same as the rfc822 header, but the code never
implemented that behavior.
This patch completes the feature by comparing the two idents
and doing nothing when they are the same (this is the same
as simply omitting the in-body header, as the two are by
definition indistinguishable in this case). This makes it
reasonable to turn on "--from" all the time (if it matches
your particular workflow), rather than only using it when
exporting other people's patches.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
a90804752f
commit
662cc30cd0
29
ident.c
29
ident.c
@ -402,3 +402,32 @@ int git_ident_config(const char *var, const char *value, void *data)
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int buf_cmp(const char *a_begin, const char *a_end,
|
||||
const char *b_begin, const char *b_end)
|
||||
{
|
||||
int a_len = a_end - a_begin;
|
||||
int b_len = b_end - b_begin;
|
||||
int min = a_len < b_len ? a_len : b_len;
|
||||
int cmp;
|
||||
|
||||
cmp = memcmp(a_begin, b_begin, min);
|
||||
if (cmp)
|
||||
return cmp;
|
||||
|
||||
return a_len - b_len;
|
||||
}
|
||||
|
||||
int ident_cmp(const struct ident_split *a,
|
||||
const struct ident_split *b)
|
||||
{
|
||||
int cmp;
|
||||
|
||||
cmp = buf_cmp(a->mail_begin, a->mail_end,
|
||||
b->mail_begin, b->mail_end);
|
||||
if (cmp)
|
||||
return cmp;
|
||||
|
||||
return buf_cmp(a->name_begin, a->name_end,
|
||||
b->name_begin, b->name_end);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user