Skip to content

Commit

Permalink
Fixed a capitalization issue to bring the Git service advertisements …
Browse files Browse the repository at this point in the history
…into spec. This should fix #24.
  • Loading branch information
otac0n committed Sep 16, 2011
1 parent 774649f commit 1988d66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WebGitNet/ActionResults/GitCommandResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public override void ExecuteResult(ControllerContext context)

private static string PacketFormat(string packet)
{
return (packet.Length + 4).ToString("X").PadLeft(4, '0') + packet;
return (packet.Length + 4).ToString("X").ToLower().PadLeft(4, '0') + packet;
}

private static string PacketFlush()
Expand Down

0 comments on commit 1988d66

Please sign in to comment.