diff options
Diffstat (limited to 'src/lib/cc/command_interpreter.cc')
-rw-r--r-- | src/lib/cc/command_interpreter.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/cc/command_interpreter.cc b/src/lib/cc/command_interpreter.cc index 1bdd329d19..be7048e7db 100644 --- a/src/lib/cc/command_interpreter.cc +++ b/src/lib/cc/command_interpreter.cc @@ -220,7 +220,7 @@ parseCommandWithArgs(ConstElementPtr& arg, ConstElementPtr command) { // Arguments must be a map. if (arg->getType() != Element::map) { isc_throw(CtrlChannelError, - "invalid command '" << command_name << "': expected " + "invalid command '" << command_name << "': expected '" << CONTROL_ARGUMENTS << "' to be a map, got " << Element::typeToName(arg->getType()) << " instead"); } |