2
2
mirror of https://github.com/octoleo/restic.git synced 2024-09-23 04:09:01 +00:00
restic/lock_windows.go
Klaus Post e1f6bbac9f Create uid/gid convertion function.
Create separate function to convert user ID / group ID of a user to integer.
Windows is a stub, since this doesn't work on Windows (uid/gid is not a number).
2015-08-16 13:16:02 +02:00

11 lines
184 B
Go

package restic
import (
"os/user"
)
// uidGidInt always returns 0 on Windows, since uid isn't numbers
func uidGidInt(u user.User) (uid, gid uint32, err error) {
return 0, 0, nil
}