Skip to content
Snippets Groups Projects
Commit 38959865 authored by rswindell's avatar rswindell
Browse files

Save/restore the current attribute in printfile() line-at-a-time mode unless

the P_SAVEATR mode flag was specified (behave like the P_OPENCLOSE mode).
parent e95bb417
No related branches found
No related tags found
No related merge requests found
......@@ -120,6 +120,9 @@ bool sbbs_t::printfile(const char* fname, long mode, long org_cols)
}
free(buf);
} else { // Line-at-a-time mode
uint tmpatr = curatr;
if(!(mode&P_SAVEATR))
attr(LIGHTGRAY);
if(length > PRINTFILE_MAX_LINE_LEN)
length = PRINTFILE_MAX_LINE_LEN;
if((buf=(char*)malloc(length+1L))==NULL) {
......@@ -136,6 +139,8 @@ bool sbbs_t::printfile(const char* fname, long mode, long org_cols)
}
free(buf);
fclose(stream);
if(!(mode&P_SAVEATR))
attr(tmpatr);
}
if((mode&P_NOABORT || rip) && online==ON_REMOTE) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment