| 99 | } |
| 100 | |
| 101 | int acl_do_debug(int section, int level) |
| 102 | { |
| 103 | if (__debug_levels == NULL) |
| 104 | return (0); |
| 105 | if (section >= __max_sections || section < 0) |
| 106 | return (0); |
| 107 | if (level > __debug_levels[section]) |
| 108 | return (0); |
| 109 | |
| 110 | return (1); |
| 111 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…