summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattijs Korpershoek <mattijs.korpershoek@gmail.com>2014-03-05 11:30:47 +0100
committerMattijs Korpershoek <mattijs.korpershoek@gmail.com>2014-03-05 11:30:47 +0100
commitbacf0da9d2782bbe3f0256022fb4f367e532bedc (patch)
tree5307bf0efc05898c574fe0f93343ee30f60b119b
parent37a6ee8e632205b18159be428bfc73ade527726b (diff)
downloadexternal_parameter-framework-bacf0da9d2782bbe3f0256022fb4f367e532bedc.zip
external_parameter-framework-bacf0da9d2782bbe3f0256022fb4f367e532bedc.tar.gz
external_parameter-framework-bacf0da9d2782bbe3f0256022fb4f367e532bedc.tar.bz2
Changed failmessage when entering unkown command
New users should be aware of the existence of the "help" command when they try the pfw for their first time
-rw-r--r--remote-processor/RemoteCommandHandlerTemplate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/remote-processor/RemoteCommandHandlerTemplate.h b/remote-processor/RemoteCommandHandlerTemplate.h
index 000ab70..fbfa059 100644
--- a/remote-processor/RemoteCommandHandlerTemplate.h
+++ b/remote-processor/RemoteCommandHandlerTemplate.h
@@ -164,7 +164,7 @@ private:
if (!pRemoteCommandParserItem) {
// Not found
- strResult = "Command not found!";
+ strResult = "Command not found!\nUse \"help\" to show available commands";
return false;
}