From: Jonathan Nieder Date: Mon, 29 Oct 2012 06:46:12 +0000 (-0700) Subject: control: print message to transcript when command is unrecognized X-Git-Tag: release/2.6.0~330 X-Git-Url: https://git.donarmstrong.com/?p=debbugs.git;a=commitdiff_plain;h=acb6ebbf2e24481587a56cfec441e55b88cfc17b control: print message to transcript when command is unrecognized We accidentally dropped this error message in 56704088 (call Debbugs::Control::service for all services, 2012-07-12). Closes: #691573 Signed-off-by: Jonathan Nieder Signed-off-by: Don Armstrong --- diff --git a/scripts/service b/scripts/service index fe91144..9debab2 100755 --- a/scripts/service +++ b/scripts/service @@ -482,6 +482,7 @@ END last; } } else { + print {$transcript} "Unknown command or malformed arguments to command.\n"; $errors++; if (++$unknowns >= 5) { print {$transcript} "Too many unknown commands, stopping here.\n\n";