ident: trim trailing newline from /etc/mailname
commit132f4b6ccb470cb209167b7806c68805ba4dc600
authorJeff King <peff@peff.net>
Mon, 21 May 2012 23:10:02 +0000 (21 19:10 -0400)
committerJunio C Hamano <gitster@pobox.com>
Tue, 22 May 2012 16:07:53 +0000 (22 09:07 -0700)
tree730543873523cbc22f41f454944c94e69a929b5f
parent2d4b4fcebdd4fb8c8cd2664b390e3bbb82370155
ident: trim trailing newline from /etc/mailname

We use fgets to read the /etc/mailname file, which means we
will typically end up with an extra newline in our
git_default_email. Most of the time this doesn't matter, as
fmt_ident will skip it as cruft, but there is one code path
that accesses it directly (in http-push.c:lock_remote).

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
ident.c