Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2015-09-24 15:44:49 +0300
committerJunio C Hamano <gitster@pobox.com>2015-09-25 20:01:07 +0300
commit83e6bda3fa564fe6b1946712a17efce1d10ed2c0 (patch)
tree62dd5efd9a331fc9d2893e7ab1c52d8297486283 /connect.c
parent8d530c4d64ffcc853889f7b385f554d53db375ed (diff)
connect: fix typo in result string of prot_name()
Replace 'unkown' with 'unknown'. Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'connect.c')
-rw-r--r--connect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/connect.c b/connect.c
index c0144d859ae..777f31c249c 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";
}
}