Bring Git repository to v1.0.6.13 level.
This commit is contained in:
@@ -396,6 +396,7 @@ int main(int argc, char **argv)
|
||||
if (CFG.iConnectString) {
|
||||
/* Connected from */
|
||||
snprintf(temp, 81, "%s\"%s\" ", (char *) Language(348), ttyinfo.comment);
|
||||
Syslog('b', "ttyinfo.comment = %s", ttyinfo.comment);
|
||||
pout(CYAN, BLACK, temp);
|
||||
/* line */
|
||||
snprintf(temp, 81, "%s%d ", (char *) Language(31), iNode);
|
||||
|
@@ -1150,7 +1150,7 @@ void OLR_Upload(void)
|
||||
|
||||
|
||||
char *Extensions[] = {
|
||||
(char *)".SU0", (char *)".MO0", (char *)".TU0", (char *)".WE0", (char *)".TH0", (char *)".FR0", (char *)".SA0"
|
||||
(char *)".SU", (char *)".MO", (char *)".TU", (char *)".WE", (char *)".TH", (char *)".FR", (char *)".SA"
|
||||
};
|
||||
|
||||
|
||||
@@ -1194,7 +1194,7 @@ void OLR_DownBW()
|
||||
tp = localtime(&Now);
|
||||
Syslog('+', "Preparing Blue Wave packet");
|
||||
|
||||
snprintf(Pktname, 32, "%s%s", CFG.bbsid , Extensions[tp->tm_wday]);
|
||||
snprintf(Pktname, 32, "%s%s%d", CFG.bbsid , Extensions[tp->tm_wday], exitinfo.OLRext);
|
||||
Syslog('m', "Packet name %s", Pktname);
|
||||
snprintf(Work, PATH_MAX, "%s/%s/tmp", CFG.bbs_usersdir, exitinfo.Name);
|
||||
Syslog('m', "Work path %s", Work);
|
||||
@@ -1416,6 +1416,11 @@ void OLR_DownBW()
|
||||
|
||||
if (mhl != NULL)
|
||||
UpdateLR(mhl, mf);
|
||||
/* Update OLR extension */
|
||||
exitinfo.OLRext++;
|
||||
if (exitinfo.OLRext > 9)
|
||||
exitinfo.OLRext = 0; /* After 9, go back to 0 */
|
||||
WriteExitinfo();
|
||||
}
|
||||
|
||||
fclose(mf);
|
||||
|
@@ -102,7 +102,7 @@ void cr(void)
|
||||
PUTSTR(chartran(pstr));
|
||||
|
||||
ls();
|
||||
snprintf(temp, 81, "%s", COPYRIGHT);
|
||||
snprintf(temp, 81, "%s.", COPYRIGHT);
|
||||
strncat(pstr, pout_str(LIGHTCYAN, BLACK, padleft(temp, 76, ' ')), 255);
|
||||
rs();
|
||||
PUTSTR(chartran(pstr));
|
||||
@@ -130,7 +130,7 @@ void cr(void)
|
||||
PUTSTR(chartran(pstr));
|
||||
|
||||
ls();
|
||||
strncat(pstr, pout_str(LIGHTCYAN, BLACK, (char *)"BBS a better BBS "), 255);
|
||||
strncat(pstr, pout_str(LIGHTCYAN, BLACK, (char *)"BBS a better BBS. "), 255);
|
||||
rs();
|
||||
PUTSTR(chartran(pstr));
|
||||
|
||||
@@ -138,7 +138,7 @@ void cr(void)
|
||||
PUTSTR(chartran(pstr));
|
||||
|
||||
ls();
|
||||
strncat(pstr, pout_str(WHITE, BLACK, (char *)"Available from http://www.mbse.eu or 2:280/2802 "), 255);
|
||||
strncat(pstr, pout_str(WHITE, BLACK, (char *)"Available from https://sourceforge.net/projects/mbsebbs "), 255);
|
||||
rs();
|
||||
PUTSTR(chartran(pstr));
|
||||
|
||||
|
Reference in New Issue
Block a user