See notework.txt

This commit is contained in:
Alexander S. Aganichev
2002-04-21 12:01:13 +00:00
parent fccc4c09e3
commit 1c39b5e099
12 changed files with 1665 additions and 145 deletions

View File

@@ -248,6 +248,7 @@ void gareafile::ReadCrashmail(char* tag) {
while(ptr) {
if(*ptr != '-') {
strcpy(file, ptr);
strschg_environ(file);
}
ptr = strtok(NULL, " \t");
}

View File

@@ -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);

View File

@@ -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;