update-ref --stdin: improve the error message for unexpected EOF

Distinguish this error from the error that an argument is missing for
another reason.  Update the tests accordingly.

Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Michael Haggerty
2014-04-07 15:48:08 +02:00
committed by Junio C Hamano
parent ff6ee39525
commit 726f69166f
2 changed files with 8 additions and 8 deletions

View File

@ -178,8 +178,8 @@ static int parse_next_sha1(struct strbuf *input, const char **next,
eof:
die(flags & PARSE_SHA1_OLD ?
"%s %s missing <oldvalue>" :
"%s %s missing <newvalue>",
"%s %s: unexpected end of input when reading <oldvalue>" :
"%s %s: unexpected end of input when reading <newvalue>",
command, refname);
}