Merge pull request #237 from johanvdw/patch-1

fix typos
This commit is contained in:
Kathryn Baldauf
2022-03-10 12:03:43 -08:00
committed by GitHub
+1 -1
View File
@@ -87,7 +87,7 @@ func SddlToSecurityDescriptor(sddl string) ([]byte, error) {
func SecurityDescriptorToSddl(sd []byte) (string, error) {
var sddl *uint16
// The returned string length seems to including an aribtrary number of terminating NULs.
// The returned string length seems to include an arbitrary number of terminating NULs.
// Don't use it.
err := convertSecurityDescriptorToStringSecurityDescriptor(&sd[0], 1, 0xff, &sddl, nil)
if err != nil {