The console version of askappend() completely forgot to check
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Sun, 31 Mar 2002 16:28:06 +0000 (16:28 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Sun, 31 Mar 2002 16:28:06 +0000 (16:28 +0000)
cfg.logxfovr to see whether the user had already specified what
should happen to log files. Fixed.

git-svn-id: svn://svn.tartarus.org/sgt/putty@1613 cda61777-01e9-0310-a592-d414129be87e

console.c

index 557c144..1078986 100644 (file)
--- 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);