summaryrefslogtreecommitdiff
path: root/go/parabola_hackers/util.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/util.go
parent374539da4c9e1b4ea5ca889771ce89b27b119f48 (diff)
update to use the mutable strings in nslcd_proto
Diffstat (limited to 'go/parabola_hackers/util.go')
-rw-r--r--go/parabola_hackers/util.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/go/parabola_hackers/util.go b/go/parabola_hackers/util.go
index 9a241db..8dd9374 100644
--- a/go/parabola_hackers/util.go
+++ b/go/parabola_hackers/util.go
@@ -36,7 +36,7 @@ func RandomString(alphabet string, n uint) (str string, err error) {
return
}
-func Set2list(set map[string]bool) []string {
+func set2list(set map[string]bool) []string {
list := make([]string, len(set))
i := uint(0)
for item, _ := range set {