rflag still needed
This commit is contained in:
parent
25a32c370e
commit
7b2c98dd1a
|
|
@ -1,3 +1,6 @@
|
|||
2008-01-03 Dietmar Warning
|
||||
* src/main.c: rflag still needed.
|
||||
|
||||
2008-01-02 Dietmar Warning
|
||||
* src/frontend/outitf.c: Fixed rawfile ascii generation. Same like below.
|
||||
* src/frontend/inp.c: don't need local buffer w/o getcwd
|
||||
|
|
|
|||
|
|
@ -660,7 +660,6 @@ main(int argc, char **argv)
|
|||
OUTendDomain,
|
||||
OUTattributes
|
||||
};
|
||||
bool rflag = FALSE;
|
||||
#else /* ~ SIMULATOR */
|
||||
bool gdata = TRUE;
|
||||
#endif /* ~ SIMULATOR */
|
||||
|
|
@ -670,6 +669,7 @@ main(int argc, char **argv)
|
|||
bool istty = TRUE;
|
||||
bool iflag = FALSE;
|
||||
bool qflag = FALSE;
|
||||
bool rflag = FALSE;
|
||||
FILE *fp;
|
||||
FILE *circuit_file;
|
||||
|
||||
|
|
@ -845,7 +845,7 @@ main(int argc, char **argv)
|
|||
if (optarg) {
|
||||
cp_vset("rawfile", VT_STRING, optarg);
|
||||
}
|
||||
/* rflag = TRUE; */
|
||||
rflag = TRUE;
|
||||
break;
|
||||
|
||||
case 's': /* Server mode */
|
||||
|
|
|
|||
Loading…
Reference in New Issue