summaryrefslogtreecommitdiff
path: root/go/parabola_hackers/nslcd_backend/db_config.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-06-18 02:08:59 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-06-18 02:08:59 -0400
commit34cecd4762e364ade049c455997051ca55663b6f (patch)
tree502182256e773704ca238da3e0b47934a8f495ce /go/parabola_hackers/nslcd_backend/db_config.go
parent374539da4c9e1b4ea5ca889771ce89b27b119f48 (diff)
update to use the mutable strings in nslcd_proto
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 e78643b..281b058 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: o.cfg.Pam_password_prohibit_message}
+ ret <- p.Config{Value: p.String(o.cfg.Pam_password_prohibit_message)}
}
}
}()