From c8b8f22aa97a94dbad4fb7d8dcb2c5bf21c4fa32 Mon Sep 17 00:00:00 2001 From: Ralf Thielow Date: Thu, 2 Apr 2015 19:28:48 +0200 Subject: send-pack: unify error messages for unsupported capabilities If --signed is not supported, the error message names the remote "receiving end". If --atomic is not supported, the error message names the remote "server". Unify the naming to "receiving end" as we're in the context of "push". Signed-off-by: Ralf Thielow Signed-off-by: Junio C Hamano --- send-pack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'send-pack.c') diff --git a/send-pack.c b/send-pack.c index 266f37f06..d938cba0a 100644 --- a/send-pack.c +++ b/send-pack.c @@ -360,7 +360,7 @@ int send_pack(struct send_pack_args *args, return 0; } if (args->atomic && !atomic_supported) - die(_("server does not support --atomic push")); + die(_("the receiving end does not support --atomic push")); use_atomic = atomic_supported && args->atomic; -- cgit v1.2.1