summaryrefslogtreecommitdiff
path: root/src/nshd/hackers_git/hackers_parse.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2015-09-07 13:01:01 -0600
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-09-07 13:01:01 -0600
commitce1dc46501556778e73fb120b92873750fab5cf3 (patch)
treef155bd1328cac0ea748f9145a15dada07c37cce8 /src/nshd/hackers_git/hackers_parse.go
parent8a72892249cab1c8323b6e402684036364e1825d (diff)
manage each users list of groups as a set instead of a list
Diffstat (limited to 'src/nshd/hackers_git/hackers_parse.go')
-rw-r--r--src/nshd/hackers_git/hackers_parse.go9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/nshd/hackers_git/hackers_parse.go b/src/nshd/hackers_git/hackers_parse.go
index f7baa68..77b9a13 100644
--- a/src/nshd/hackers_git/hackers_parse.go
+++ b/src/nshd/hackers_git/hackers_parse.go
@@ -77,7 +77,7 @@ func parse_user_yaml(filename string) (ret user, err error) {
}
if iface, isSet := data["groups"]; !isSet {
- ret.groups = make([]string, 0)
+ ret.groups = make(map[string]bool, 0)
} else if ary, isTyp := iface.([]interface{}); !isTyp {
errs = append(errs, "\"groups\" is not an array")
} else {
@@ -93,12 +93,7 @@ func parse_user_yaml(filename string) (ret user, err error) {
}
}
if !e {
- ret.groups = make([]string, len(groups))
- var i uint = 0
- for group, _ := range groups {
- ret.groups[i] = group
- i++
- }
+ ret.groups = groups
}
}
}