git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] bundle: improve message when unknown hash algorithm detected
@ 2020-07-12 16:50 brian m. carlson
  2020-07-12 18:10 ` Junio C Hamano
  0 siblings, 1 reply; 2+ messages in thread
From: brian m. carlson @ 2020-07-12 16:50 UTC (permalink / raw)
  To: git; +Cc: Junio C Hamano, Matthias Rüster

The current code states "unknown hash algorithm length".  This is
slightly confusing, and moreover, we've gotten feedback that it's hard
to translate into other languages.  Since the case is that we cannot
detect the hash algorithm, let's just say that.  This is clearer and
more direct, reflects the intent of the code (which calls the function
detect_hash_algo just a few lines above), and will be easier to
translate.

Suggested-by: Matthias Rüster <matthias.ruester@gmail.com>
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
---
Matthias contacted me privately about this message and I thought since
we're still in the RC period, it would make sense to include this in to
help translators and those who aren't native speakers.

 bundle.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bundle.c b/bundle.c
index 2a0d744d3f..69c807bda9 100644
--- a/bundle.c
+++ b/bundle.c
@@ -66,7 +66,7 @@ static int parse_bundle_header(int fd, struct bundle_header *header,
 		if (!header->hash_algo) {
 			header->hash_algo = detect_hash_algo(&buf);
 			if (!header->hash_algo) {
-				error(_("unknown hash algorithm length"));
+				error(_("unable to detect hash algorithm"));
 				status = -1;
 				break;
 			}

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-07-12 18:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-07-12 16:50 [PATCH] bundle: improve message when unknown hash algorithm detected brian m. carlson
2020-07-12 18:10 ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).