Revert change to LoginMessage tokenPath

This commit is contained in:
Chord 2016-04-30 23:53:04 -04:00
parent 30a94a0725
commit 36d9f5134c
2 changed files with 2 additions and 2 deletions

View file

@ -141,7 +141,7 @@ final case class LoginMessage(majorVersion : Long,
object LoginMessage extends Marshallable[LoginMessage] {
private def username = PacketHelpers.encodedStringAligned(7)
private def password = PacketHelpers.encodedString
private def tokenPath = fixedSizeBytes(32, bytes) :: username
private def tokenPath = fixedSizeBytes(32, ascii) :: username
private def passwordPath = username :: password
type Struct = String :: Option[String] :: Option[String] :: HNil