Skip to content

Commit

Permalink
Minor multiplatform compile problem
Browse files Browse the repository at this point in the history
  • Loading branch information
lkarlslund committed May 2, 2023
1 parent 5e12f90 commit aa4c038
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions modules/integrations/activedirectory/collect/ldap_others.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@

package collect

import (
"errors"
ldap "github.com/lkarlslund/ldap/v3"
)

func GetSSPIClient() (ldap.GSSAPIClient, error) {
return nil, errors.New("This is only supported on Windows")
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package collect

import (
"github.com/lkarlslund/ldap/v3"
ldap "github.com/lkarlslund/ldap/v3"
"github.com/lkarlslund/ldap/v3/gssapi"
)

Expand Down

0 comments on commit aa4c038

Please sign in to comment.