1
0
mirror of https://github.com/golang/go synced 2024-11-25 20:57:57 -07:00

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

View File

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