Searched refs:granted_rights (Results 1 - 1 of 1) sorted by relevance

/macosx-10.9.5/SecurityTool-55115/
H A Dauthz.c630 AuthorizationRights *granted_rights = NULL; local
631 status = AuthorizationCopyRights(auth_ref, &rightset, envp, flags, &granted_rights);
640 if (!do_quiet && !status && granted_rights)
643 fprintf(stderr, "{ %d: ", (int)granted_rights->count);
644 for (index = 0; index < granted_rights->count; index++)
646 fprintf(stderr, "\"%s\"%s %c ", granted_rights->items[index].name,
647 (kAuthorizationFlagCanNotPreAuthorize & granted_rights->items[index].flags) ? " (cannot-preauthorize)" : "",
648 (index+1 != granted_rights->count) ? ',' : '}');
650 AuthorizationFreeItemSet(granted_rights);

Completed in 74 milliseconds