#1635 PAM return error bug

release/v0.9
Unknwon 9 years ago
parent 2d1bb0cf49
commit d600530c20

@ -17,7 +17,7 @@ import (
"github.com/gogits/gogs/modules/setting"
)
const APP_VER = "0.6.12.0913 Beta"
const APP_VER = "0.6.12.0914 Beta"
func init() {
runtime.GOMAXPROCS(runtime.NumCPU())

@ -388,7 +388,7 @@ func LoginUserSMTPSource(u *User, name, passwd string, sourceId int64, cfg *SMTP
func LoginUserPAMSource(u *User, name, passwd string, sourceId int64, cfg *PAMConfig, autoRegister bool) (*User, error) {
if err := pam.PAMAuth(cfg.ServiceName, name, passwd); err != nil {
if strings.Contains(err.Error(), "Authentication failure") {
return nil, ErrUserNotExist{u.Id, u.Name}
return nil, ErrUserNotExist{0, name}
}
return nil, err
}

@ -1 +1 @@
0.6.12.0913 Beta
0.6.12.0914 Beta
Loading…
Cancel
Save