busybox: Mimic correct "not found" behavior for invalid commands.

This commit is contained in:
Sam Edwards
2016-10-04 17:00:49 -07:00
committed by Michel Oosterhof
parent aafef68e39
commit bffb2e31b7

View File

@@ -88,7 +88,7 @@ class command_busybox(HoneyPotCommand):
if self.input_data:
self.write(self.input_data)
else:
self.help()
self.write('{}: applet not found\n'.format(cmd))
else:
self.help()