| 58 | } |
| 59 | |
| 60 | std::vector<std::string> findGroupsWithPerm(const char* perm, bool skipLocal) { |
| 61 | std::string name; |
| 62 | if (perm) { |
| 63 | name = perm; |
| 64 | } |
| 65 | return findGroupsWithPerm(name, skipLocal); |
| 66 | } |
| 67 | |
| 68 | std::vector<std::string> findGroupsWithPerm(const std::string& perm, bool skipLocal) { |
| 69 | std::vector<std::string> groupsWithPerms; |
no test coverage detected