aboutsummaryrefslogtreecommitdiff
path: root/src/os/user/lookup_unix.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/os/user/lookup_unix.go')
-rw-r--r--src/os/user/lookup_unix.go8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/os/user/lookup_unix.go b/src/os/user/lookup_unix.go
index 97c611fad4..dffea4a885 100644
--- a/src/os/user/lookup_unix.go
+++ b/src/os/user/lookup_unix.go
@@ -18,13 +18,15 @@ import (
"strings"
)
-const groupFile = "/etc/group"
-const userFile = "/etc/passwd"
+const (
+ groupFile = "/etc/group"
+ userFile = "/etc/passwd"
+)
var colon = []byte{':'}
func init() {
- groupImplemented = false
+ groupListImplemented = false
}
// lineFunc returns a value, an error, or (nil, nil) to skip the row.