summaryrefslogtreecommitdiff
path: root/src/nshd/hackers_git/db_passwd.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2015-09-02 13:33:04 -0600
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-09-02 13:33:04 -0600
commit212105ea42362d49416e9d32261e2e099632c38c (patch)
treec0ba9066a9b44aeb50e0f95440fe4bade09cc3e9 /src/nshd/hackers_git/db_passwd.go
parent26ccaab75a1eae3d71a6497dacc7818f8e62417d (diff)
clean up formatting
Diffstat (limited to 'src/nshd/hackers_git/db_passwd.go')
-rw-r--r--src/nshd/hackers_git/db_passwd.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nshd/hackers_git/db_passwd.go b/src/nshd/hackers_git/db_passwd.go
index e8a6838..7bc3671 100644
--- a/src/nshd/hackers_git/db_passwd.go
+++ b/src/nshd/hackers_git/db_passwd.go
@@ -67,9 +67,9 @@ func (e *allPasswdEnumerator) GenericGetNext() (interface{}, error) {
func (o *Hackers) newAllPasswdEnumerator() *allPasswdEnumerator {
o.lock.RLock()
e := allPasswdEnumerator{
- uids: make([]int32, len(o.users)),
+ uids: make([]int32, len(o.users)),
backend: o,
- done: false,
+ done: false,
}
for uid, _ := range o.users {
e.uids = append(e.uids, uid)