Skip to content

Commit

Permalink
Proper backing for GUID conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
lkarlslund committed May 30, 2022
1 parent b33a2f0 commit 3213b51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/integrations/activedirectory/analyze/analyze-ad.go
Original file line number Diff line number Diff line change
Expand Up @@ -1072,12 +1072,12 @@ func init() {
}
}
if len(guids) > 0 {
object.Set(engine.ObjectClassGUIDs, engine.AttributeValueSlice(guids))
object.SetFlex(engine.ObjectClassGUIDs, guids)
}
}

var objectcategoryguid engine.AttributeValues
objectcategoryguid = engine.AttributeValueSlice{engine.AttributeValueGUID(engine.UnknownGUID)}
objectcategoryguid = engine.AttributeValueOne{engine.AttributeValueGUID(engine.UnknownGUID)}
typedn := object.OneAttr(engine.ObjectCategory)

// Does it have one, and does it have a comma, then we're assuming it's not just something we invented
Expand Down

0 comments on commit 3213b51

Please sign in to comment.