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
This commit is contained in:
Brian Dellisanti 2013-02-20 15:38:35 +11:00 committed by Alex Brainman
parent 7f9c02a10d
commit e378aef1de
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ type UserInfo10 struct {
const (
// do not reorder
SidTypeUser = 1 << iota
SidTypeUser = 1 + iota
SidTypeGroup
SidTypeDomain
SidTypeAlias