Ahem. Global replace of `cfg' with `inst->cfg' is all very well, but
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Sun, 12 Jan 2003 15:36:05 +0000 (15:36 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Sun, 12 Jan 2003 15:36:05 +0000 (15:36 +0000)
let's try to make sure it doesn't happen inside any strings! The
-cfg option for cursor foreground colour nearly had a nasty accident
there.

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

unix/pterm.c

index a5367a0..cc6b2d0 100644 (file)
@@ -2061,7 +2061,7 @@ int do_cmdline(int argc, char **argv, int do_everything, Config *cfg)
 
        } else if (!strcmp(p, "-fg") || !strcmp(p, "-bg") ||
                   !strcmp(p, "-bfg") || !strcmp(p, "-bbg") ||
-                  !strcmp(p, "-inst->cfg") || !strcmp(p, "-cbg")) {
+                  !strcmp(p, "-cfg") || !strcmp(p, "-cbg")) {
            GdkColor col;
 
            EXPECTS_ARG;
@@ -2075,7 +2075,7 @@ int do_cmdline(int argc, char **argv, int do_everything, Config *cfg)
                         !strcmp(p, "-bg") ? 2 :
                         !strcmp(p, "-bfg") ? 1 :
                         !strcmp(p, "-bbg") ? 3 :
-                        !strcmp(p, "-inst->cfg") ? 4 :
+                        !strcmp(p, "-cfg") ? 4 :
                         !strcmp(p, "-cbg") ? 5 : -1);
                assert(index != -1);
                cfg->colours[index][0] = col.red / 256;