Skip to content

Commit

Permalink
Add missing symbol to sys_unsupported to fix broken compile on non-…
Browse files Browse the repository at this point in the history
…windows platforms
  • Loading branch information
danieljoos committed Jul 14, 2024
1 parent 8e487cc commit f117013
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sys_unsupported.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build !windows
// +build !windows

package wincred
Expand All @@ -17,6 +18,7 @@ const (

sysERROR_NOT_FOUND = syscall.Errno(1)
sysERROR_INVALID_PARAMETER = syscall.Errno(1)
sysERROR_BAD_USERNAME = syscall.Errno(1)
)

func sysCredRead(...interface{}) (*Credential, error) {
Expand Down

0 comments on commit f117013

Please sign in to comment.