summaryrefslogtreecommitdiff
path: root/go/parabola_hackers/users.go.in
diff options
context:
space:
mode:
Diffstat (limited to 'go/parabola_hackers/users.go.in')
-rw-r--r--go/parabola_hackers/users.go.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/go/parabola_hackers/users.go.in b/go/parabola_hackers/users.go.in
index e54de01..3a307be 100644
--- a/go/parabola_hackers/users.go.in
+++ b/go/parabola_hackers/users.go.in
@@ -21,8 +21,8 @@ import (
"os/exec"
yaml "gopkg.in/yaml.v2"
- p "lukeshu.com/git/go/libnslcd.git/proto"
- "lukeshu.com/git/go/libsystemd.git/sd_daemon/logger"
+ p "git.lukeshu.com/go/libnslcd/nslcd_proto"
+ "git.lukeshu.com/go/libsystemd/sd_daemon"
)
/* Note that the password hash value should be one of:
@@ -67,7 +67,7 @@ func LoadAllUsers() (users map[int32]User, err error) {
continue
}
user.Passwd.UID = int32(uid)
- logger.Debug("hackers.git: -> User %d(%s) parsed", user.Passwd.UID, user.Passwd.Name)
+ sd_daemon.Log.Debug(fmt.Sprintf("hackers.git: -> User %d(%s) parsed", user.Passwd.UID, user.Passwd.Name))
users[user.Passwd.UID] = user
}
}