summaryrefslogtreecommitdiff
path: root/go/parabola_hackers/nslcd_backend/db_config.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-06-18 06:19:16 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-06-18 06:19:16 -0400
commit95c195baf42e8a74680a74acdc20c00bab7660eb (patch)
tree996e3d8ab8832b35f0195c7c026d646ce97cdecd /go/parabola_hackers/nslcd_backend/db_config.go
parentfd98ee554c3c785ee83460e83027d56891fbd9b2 (diff)
go back to using plain stringsv20160518.1
Diffstat (limited to 'go/parabola_hackers/nslcd_backend/db_config.go')
-rw-r--r--go/parabola_hackers/nslcd_backend/db_config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/go/parabola_hackers/nslcd_backend/db_config.go b/go/parabola_hackers/nslcd_backend/db_config.go
index 281b058..e78643b 100644
--- a/go/parabola_hackers/nslcd_backend/db_config.go
+++ b/go/parabola_hackers/nslcd_backend/db_config.go
@@ -32,7 +32,7 @@ func (o *Hackers) Config_Get(cred s.Ucred, req p.Request_Config_Get) <-chan p.Co
switch req.Key {
case p.NSLCD_CONFIG_PAM_PASSWORD_PROHIBIT_MESSAGE:
if o.cfg.Pam_password_prohibit_message != "" {
- ret <- p.Config{Value: p.String(o.cfg.Pam_password_prohibit_message)}
+ ret <- p.Config{Value: o.cfg.Pam_password_prohibit_message}
}
}
}()