diff --git a/ChangeLog b/ChangeLog index 2f027797..69772d85 100644 --- a/ChangeLog +++ b/ChangeLog @@ -112,6 +112,7 @@ v0.37.01 14-Jan-2003. The menus are machine endian independant. Maybe removed a bug where the bbs sometimes crashed during mail reading. + Fixed some minor things to the door.sys file. examples: The English and Dutch templates are updated to show the new diff --git a/TODO b/TODO index fbd47026..59f0de44 100644 --- a/TODO +++ b/TODO @@ -41,7 +41,9 @@ mbsebbs: 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: L: Allow handles to be the same as the unixname. diff --git a/mbsebbs/door.c b/mbsebbs/door.c index ce501629..734fe251 100644 --- a/mbsebbs/door.c +++ b/mbsebbs/door.c @@ -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.iTotalCalls); 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); /* Minutes */ + fprintf(fp, "%d\r\n", exitinfo.iTimeLeft * 60); /* Seconds */ + fprintf(fp, "%d\r\n", exitinfo.iTimeLeft); /* Minutes */ fprintf(fp, "%s\r\n", exitinfo.GraphMode?"GR":"NG"); /* Graphics */ fprintf(fp, "%d\r\n", exitinfo.iScreenLen); fprintf(fp, "N\r\n"); /* User mode, always N */