summaryrefslogtreecommitdiff
path: root/src/nshd/hackers_git/db_passwd.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/nshd/hackers_git/db_passwd.go')
-rw-r--r--src/nshd/hackers_git/db_passwd.go9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/nshd/hackers_git/db_passwd.go b/src/nshd/hackers_git/db_passwd.go
index 2cfaccd..719ff3f 100644
--- a/src/nshd/hackers_git/db_passwd.go
+++ b/src/nshd/hackers_git/db_passwd.go
@@ -69,19 +69,16 @@ func (o *allPasswdEnumerator) GenericGetNext() (n *interface{}, err error) {
return
}
-func (o *Hackers) newAllPasswdEnumerator() *allPasswdEnumerator {
+func (o *Hackers) Passwd_All(cred p.Ucred, req p.Request_Passwd_All) p.Passwd_Enumerator {
o.lock.RLock()
e := allPasswdEnumerator{
uids: make([]int32, len(o.users)),
backend: o,
done: false,
}
+ i := uint(0)
for uid, _ := range o.users {
- e.uids = append(e.uids, uid)
+ e.uids[i] = uid
}
return &e
}
-
-func (o *Hackers) Passwd_All(cred p.Ucred, req p.Request_Passwd_All) p.Passwd_Enumerator {
- return o.newAllPasswdEnumerator()
-}