From 9f9aa761305e909aca9a46ccb33a5872b36bcb8e Mon Sep 17 00:00:00 2001 From: Elijah Newren Date: Sat, 31 Jul 2010 14:11:46 -0600 Subject: upload-pack: Improve error message when bad ref requested When printing an error message saying a ref was requested that we do not have, only print that ref, rather than the ref and everything sent to us on the same packet line (e.g. protocol support specifications). Signed-off-by: Elijah Newren Signed-off-by: Junio C Hamano --- upload-pack.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'upload-pack.c') diff --git a/upload-pack.c b/upload-pack.c index 8f4c718bf..fc79ddef2 100644 --- a/upload-pack.c +++ b/upload-pack.c @@ -549,7 +549,8 @@ static void receive_needs(void) */ o = lookup_object(sha1_buf); if (!o || !(o->flags & OUR_REF)) - die("git upload-pack: not our ref %s", line+5); + die("git upload-pack: not our ref %s", + sha1_to_hex(sha1_buf)); if (!(o->flags & WANTED)) { o->flags |= WANTED; add_object_array(o, NULL, &want_obj); -- cgit v1.2.1