| 75 | const char* TYPE_SEEN = "Seen"; |
| 76 | |
| 77 | void check(const char* s, IStatus* st) |
| 78 | { |
| 79 | if (!(st->getState() & IStatus::STATE_ERRORS)) |
| 80 | return; |
| 81 | |
| 82 | Arg::StatusVector newStatus(st); |
| 83 | newStatus << Arg::Gds(isc_map_load) << s; |
| 84 | newStatus.raise(); |
| 85 | } |
| 86 | |
| 87 | } // anonymous namespace |
| 88 |
no test coverage detected