Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'tk/typofix-connect-unknown-proto-error' into maint
author
Junio C Hamano
<gitster@pobox.com>
Fri, 16 Oct 2015 21:32:55 +0000
(14:32 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Fri, 16 Oct 2015 21:32:55 +0000
(14:32 -0700)
* tk/typofix-connect-unknown-proto-error:
connect: fix typo in result string of prot_name()
connect.c
patch
|
blob
|
history
raw
(from parent 1:
aa8f64d
)
diff --git
a/connect.c
b/connect.c
index ced4961398d397e0e21661ce7105be293c3585c2..d3283b8a4f3e8ed8451e723ce8b39d468aaa3dd3 100644
(file)
--- a/
connect.c
+++ b/
connect.c
@@
-255,7
+255,7
@@
static const char *prot_name(enum protocol protocol)
case PROTO_GIT:
return "git";
default:
- return "unkown protocol";
+ return "unk
n
own protocol";
}
}