Merge pull request #727 from Mageti/master

Correction for #723
This commit is contained in:
无闻 2014-12-10 05:03:50 -05:00
commit b2c6a6920f
1 changed files with 2 additions and 7 deletions

View File

@ -48,13 +48,8 @@ func BasicAuthDecode(encoded string) (user string, name string, err error) {
return user, name, err
}
a := strings.Split(string(s), ":")
if len(a) == 2 {
user, name = a[0], a[1]
} else {
err = errors.New("decode failed")
}
return user, name, err
auth := strings.SplitN(string(s), ":", 2)
return auth[0], auth[1], err
}
func BasicAuthEncode(username, password string) string {