Allow : in password

This commit is contained in:
Armin Wolfermann 2016-04-05 15:24:24 +02:00
parent d871e9aee7
commit 7951455a00
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ func NewConnection(server string) *Connection {
if inx1 > 0 { if inx1 > 0 {
security := server[0:inx1] security := server[0:inx1]
connstr = server[inx1+1 : len(server)] connstr = server[inx1+1 : len(server)]
up := strings.Split(security, ":") up := strings.SplitN(security, ":", 2)
conn.Username = up[0] conn.Username = up[0]
conn.Password = up[1] conn.Password = up[1]
} }