Signed-off-by: Robin Rosenberg <robin.rosenberg@xxxxxxxxxx> --- .../org/spearce/jgit/transport/PacketLineOut.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Disovered this bug when trying to clone a local repo with some "funny" ref names. C Git handles them so jgit should too. -- robin diff --git a/org.spearce.jgit/src/org/spearce/jgit/transport/PacketLineOut.java b/org.spearce.jgit/src/org/spearce/jgit/transport/PacketLineOut.java index aae4be5..cb6d89a 100644 --- a/org.spearce.jgit/src/org/spearce/jgit/transport/PacketLineOut.java +++ b/org.spearce.jgit/src/org/spearce/jgit/transport/PacketLineOut.java @@ -54,7 +54,7 @@ PacketLineOut(final OutputStream i) { } void writeString(final String s) throws IOException { - writePacket(Constants.encodeASCII(s)); + writePacket(Constants.encode(s)); } void writePacket(final byte[] packet) throws IOException { -- 1.6.1.rc3.56.gd0306 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html