diff options
| author | Brian Dellisanti <briandellisanti@gmail.com> | 2013-02-20 15:38:35 +1100 |
|---|---|---|
| committer | Alex Brainman <alex.brainman@gmail.com> | 2013-02-20 15:38:35 +1100 |
| commit | e378aef1def490cec4b86e2d341a287b5286d01f (patch) | |
| tree | e1f1aaa593628424cb38a7a6dbe86bf3ffb96b74 /src/pkg | |
| parent | 7f9c02a10d736d8d4c39717c82b69ec50e9677f1 (diff) | |
| download | go-e378aef1def490cec4b86e2d341a287b5286d01f.tar.xz | |
windows: fix syscall.SidTypeUser so following consts have correct values.
Fixes #4844.
R=golang-dev, alex.brainman
CC=golang-dev
https://golang.org/cl/7366043
Diffstat (limited to 'src/pkg')
| -rw-r--r-- | src/pkg/syscall/security_windows.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/syscall/security_windows.go b/src/pkg/syscall/security_windows.go index 71aef2fcaf..017b270146 100644 --- a/src/pkg/syscall/security_windows.go +++ b/src/pkg/syscall/security_windows.go @@ -70,7 +70,7 @@ type UserInfo10 struct { const ( // do not reorder - SidTypeUser = 1 << iota + SidTypeUser = 1 + iota SidTypeGroup SidTypeDomain SidTypeAlias |
