Don't abort on unknown messages

This commit is contained in:
Nicolas Viennot 2016-01-23 01:07:25 -05:00
parent 64e14eaff5
commit 405cd82a82

View File

@ -146,6 +146,6 @@ void tmate_dispatch_slave_message(struct tmate_session *session,
dispatch(TMATE_IN_SET_ENV, handle_set_env);
dispatch(TMATE_IN_READY, handle_ready);
dispatch(TMATE_IN_PANE_KEY, handle_pane_key);
default: tmate_fatal("Bad message type: %d", cmd);
default: tmate_info("Bad message type: %d", cmd);
}
}