Small fix to the door.sys file

This commit is contained in:
Michiel Broek 2003-02-18 22:41:25 +00:00
parent afd2b55ea9
commit 6aacdea786
3 changed files with 6 additions and 3 deletions

View File

@ -112,6 +112,7 @@ v0.37.01 14-Jan-2003.
The menus are machine endian independant. The menus are machine endian independant.
Maybe removed a bug where the bbs sometimes crashed during Maybe removed a bug where the bbs sometimes crashed during
mail reading. mail reading.
Fixed some minor things to the door.sys file.
examples: examples:
The English and Dutch templates are updated to show the new The English and Dutch templates are updated to show the new

4
TODO
View File

@ -41,7 +41,9 @@ mbsebbs:
L: ChangeHandle, allow own unix name as handle. L: ChangeHandle, allow own unix name as handle.
N: Delete messages. N: Delete messages from the menu.
N: With delete message during reading there is no check.
newuser: newuser:
L: Allow handles to be the same as the unixname. L: Allow handles to be the same as the unixname.

View File

@ -182,8 +182,8 @@ void ExtDoor(char *Program, int NoDoorsys, int Y2Kdoorsys, int Comport, int NoSu
fprintf(fp, "%d\r\n", exitinfo.Security.level); fprintf(fp, "%d\r\n", exitinfo.Security.level);
fprintf(fp, "%d\r\n", exitinfo.iTotalCalls); fprintf(fp, "%d\r\n", exitinfo.iTotalCalls);
fprintf(fp, "%s\r\n", Gdate(exitinfo.tLastLoginDate, Y2Kdoorsys)); fprintf(fp, "%s\r\n", Gdate(exitinfo.tLastLoginDate, Y2Kdoorsys));
fprintf(fp, "%d\r\n", exitinfo.iTimeLeft); /* Seconds */ fprintf(fp, "%d\r\n", exitinfo.iTimeLeft * 60); /* Seconds */
fprintf(fp, "%d\r\n", exitinfo.iTimeLeft / 60); /* Minutes */ fprintf(fp, "%d\r\n", exitinfo.iTimeLeft); /* Minutes */
fprintf(fp, "%s\r\n", exitinfo.GraphMode?"GR":"NG"); /* Graphics */ fprintf(fp, "%s\r\n", exitinfo.GraphMode?"GR":"NG"); /* Graphics */
fprintf(fp, "%d\r\n", exitinfo.iScreenLen); fprintf(fp, "%d\r\n", exitinfo.iScreenLen);
fprintf(fp, "N\r\n"); /* User mode, always N */ fprintf(fp, "N\r\n"); /* User mode, always N */