See notework.txt
This commit is contained in:
@@ -248,6 +248,7 @@ void gareafile::ReadCrashmail(char* tag) {
|
||||
while(ptr) {
|
||||
if(*ptr != '-') {
|
||||
strcpy(file, ptr);
|
||||
strschg_environ(file);
|
||||
}
|
||||
ptr = strtok(NULL, " \t");
|
||||
}
|
||||
|
@@ -173,6 +173,7 @@ void gareafile::ReadFastecho(char* tag) {
|
||||
while(ptr) {
|
||||
if(*ptr != '-') {
|
||||
strcpy(file, ptr);
|
||||
strschg_environ(file);
|
||||
break;
|
||||
}
|
||||
ptr = strtok(NULL, " \t");
|
||||
@@ -180,7 +181,7 @@ void gareafile::ReadFastecho(char* tag) {
|
||||
if(*file == NUL) {
|
||||
ptr = getenv("FASTECHO");
|
||||
if(ptr)
|
||||
AddBackslash(strcpy(file, ptr));
|
||||
PathCopy(file, ptr);
|
||||
}
|
||||
if(*file == NUL)
|
||||
strcpy(file, areapath);
|
||||
|
@@ -78,7 +78,7 @@ void gareafile::ReadSpaceAr(const char* file) {
|
||||
setvbuf(fp, NULL, _IOFBF, 8192);
|
||||
|
||||
if(not quiet)
|
||||
cout << "* Reading " << file << endl;
|
||||
std::cout << "* Reading " << file << std::endl;
|
||||
|
||||
char buf[4000];
|
||||
AreaCfg aa;
|
||||
@@ -170,7 +170,7 @@ void gareafile::ReadSpaceNtm(const char* file) {
|
||||
setvbuf(fp, NULL, _IOFBF, 8192);
|
||||
|
||||
if(not quiet)
|
||||
cout << "* Reading " << file << endl;
|
||||
std::cout << "* Reading " << file << std::endl;
|
||||
|
||||
char buf[4000];
|
||||
AreaCfg aa;
|
||||
@@ -235,7 +235,7 @@ void gareafile::ReadSpaceCtl(const char* file) {
|
||||
setvbuf(fp, NULL, _IOFBF, 8192);
|
||||
|
||||
if(not quiet)
|
||||
cout << "* Reading " << file << endl;
|
||||
std::cout << "* Reading " << file << std::endl;
|
||||
|
||||
char buf[4000];
|
||||
AreaCfg aa;
|
||||
|
Reference in New Issue
Block a user