summaryrefslogtreecommitdiff
path: root/frontends/monkey/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/monkey/main.c')
-rw-r--r--frontends/monkey/main.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/frontends/monkey/main.c b/frontends/monkey/main.c
index 7ef4208ca..4fdc5ebc2 100644
--- a/frontends/monkey/main.c
+++ b/frontends/monkey/main.c
@@ -393,6 +393,11 @@ main(int argc, char **argv)
die("options handler failed to register");
}
+ ret = monkey_register_handler("LOGIN", monkey_login_handle_command);
+ if (ret != NSERROR_OK) {
+ die("login handler failed to register");
+ }
+
moutf(MOUT_GENERIC, "STARTED");
monkey_run();