From: Tobias Klauser Date: Thu, 24 Sep 2015 12:44:49 +0000 (+0200) Subject: connect: fix typo in result string of prot_name() X-Git-Tag: v2.6.2~4^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=83e6bda3fa564fe6b1946712a17efce1d10ed2c0;p=thirdparty%2Fgit.git connect: fix typo in result string of prot_name() Replace 'unkown' with 'unknown'. Signed-off-by: Tobias Klauser Signed-off-by: Junio C Hamano --- diff --git a/connect.c b/connect.c index c0144d859a..777f31c249 100644 --- a/connect.c +++ b/connect.c @@ -254,7 +254,7 @@ static const char *prot_name(enum protocol protocol) case PROTO_GIT: return "git"; default: - return "unkown protocol"; + return "unknown protocol"; } }