X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=unix%2Fuxcons.c;h=a8effe9003a0c81a8b77b7cfa8091d0e6654789f;hb=cdbb891f0ff44f4494452970ff69465179c0be1e;hp=3ed7ebf7bb2cb2d1a3fdb98e940bdc7689e91698;hpb=98028c746f08d0e7bf5d8524d6aca85e5a2f4145;p=PuTTY.git diff --git a/unix/uxcons.c b/unix/uxcons.c index 3ed7ebf7..a8effe90 100644 --- a/unix/uxcons.c +++ b/unix/uxcons.c @@ -35,6 +35,14 @@ void update_specials_menu(void *frontend) { } +void notify_remote_exit(void *frontend) +{ +} + +void timer_change_notify(long next) +{ +} + void verify_ssh_host_key(void *frontend, char *host, int port, char *keytype, char *keystr, char *fingerprint) { @@ -280,6 +288,7 @@ int console_get_line(const char *prompt, char *str, if (console_batch_mode) { if (maxlen > 0) str[0] = '\0'; + return 0; } else { tcgetattr(0, &oldmode); newmode = oldmode; @@ -302,8 +311,9 @@ int console_get_line(const char *prompt, char *str, if (is_pw) fputs("\n", stdout); + + return 1; } - return 1; } void frontend_keypress(void *handle)