X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=console.c;h=e49eaa099a90b7395542d8b5365e077341c93fea;hb=118fc8c81e6a850adbcc8dda409d9c10875eae7d;hp=557c144772084d5d5be0f7a731cf3eb73824e622;hpb=dac0d4569960236264898b112707c2b574eb285b;p=PuTTY.git diff --git a/console.c b/console.c index 557c1447..e49eaa09 100644 --- a/console.c +++ b/console.c @@ -212,6 +212,9 @@ int askappend(char *filename) char line[32]; + if (cfg.logxfovr != LGXF_ASK) { + return ((cfg.logxfovr == LGXF_OVR) ? 2 : 1); + } if (console_batch_mode) { fprintf(stderr, msgtemplate_batch, FILENAME_MAX, filename); fflush(stderr); @@ -258,27 +261,12 @@ void logevent(char *string) { } -char *console_password = NULL; - int console_get_line(const char *prompt, char *str, int maxlen, int is_pw) { HANDLE hin, hout; DWORD savemode, newmode, i; - if (is_pw && console_password) { - static int tried_once = 0; - - if (tried_once) { - return 0; - } else { - strncpy(str, console_password, maxlen); - str[maxlen - 1] = '\0'; - tried_once = 1; - return 1; - } - } - if (console_batch_mode) { if (maxlen > 0) str[0] = '\0';