| 1790 | |
| 1791 | |
| 1792 | static int acl_compare(ACL_ACCESS *a,ACL_ACCESS *b) |
| 1793 | { |
| 1794 | if (a->sort > b->sort) |
| 1795 | return -1; |
| 1796 | if (a->sort < b->sort) |
| 1797 | return 1; |
| 1798 | return 0; |
| 1799 | } |
| 1800 | |
| 1801 | |
| 1802 | /* |
nothing calls this directly
no outgoing calls
no test coverage detected