| 81 | } |
| 82 | |
| 83 | void configError(CheckStatusWrapper* status, const string& type, const string& key, const string& value) |
| 84 | { |
| 85 | string msg; |
| 86 | if (!(status->getState() & IStatus::STATE_ERRORS)) |
| 87 | { |
| 88 | msg.printf("Incorrect entry in %s", REPLICATION_CFGFILE); |
| 89 | (Arg::Gds(isc_random) << Arg::Str(msg)).appendTo(status); |
| 90 | } |
| 91 | |
| 92 | msg.printf("%s specifies %s: %s", key.c_str(), type.c_str(), value.c_str()); |
| 93 | (Arg::Gds(isc_random) << Arg::Str(msg)).appendTo(status); |
| 94 | } |
| 95 | |
| 96 | bool checkAccess(CheckStatusWrapper* status, const PathName& path, const string& key) |
| 97 | { |
no test coverage detected