another little fix
This commit is contained in:
parent
6a10b0fb38
commit
7cca518dfc
@ -297,6 +297,16 @@ int export_messages(int area) {
|
|||||||
|
|
||||||
msg.area = areas[area]->id;
|
msg.area = areas[area]->id;
|
||||||
msg.type = 0;
|
msg.type = 0;
|
||||||
|
|
||||||
|
for (i=strlen(body) -2; i > 0; i--) {
|
||||||
|
if (body[i] == '\r') {
|
||||||
|
sprintf(buffer, "\r * Origin: ftn->mnet (%d)\r", mynode);
|
||||||
|
body = realloc(body, strlen(body) + strlen(buffer) + 1);
|
||||||
|
strcpy(&body[i], buffer);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (areas[area]->hub == mynode) {
|
if (areas[area]->hub == mynode) {
|
||||||
for (n = 0; n < areas[area]->link_count; n++) {
|
for (n = 0; n < areas[area]->link_count; n++) {
|
||||||
if (imhub) {
|
if (imhub) {
|
||||||
@ -370,7 +380,7 @@ int main(int argc, char **argv) {
|
|||||||
int l;
|
int l;
|
||||||
|
|
||||||
if (argc < 2) {
|
if (argc < 2) {
|
||||||
fprintf(stderr, "Usage ./mnetscan mnet.cfg\n");
|
fprintf(stderr, "Usage ./ftntomnet mnet.cfg\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user