When calling mbcico the address passed is now 5d

This commit is contained in:
Michiel Broek 2004-08-07 20:20:30 +00:00
parent 4a1d20986b
commit c4e7b8a6fc
3 changed files with 7 additions and 5 deletions

View File

@ -36,6 +36,7 @@ v0.61.3 25-Jul-2004
mbtask:
Added defaults for questions for screenlen, newmail chack and
newfiles check.
When calling mbcico the address passed is now 5d.
mbsetup:
In menu 1.7 added 3 new items to ask new users for screenlen,

View File

@ -77,7 +77,7 @@ int check_calllist(void)
}
}
if (!found) {
Syslog('c', "Removing slot %d node %s from calllist", i, fido2str(calllist[i].addr, 0x0f));
Syslog('c', "Removing slot %d node %s from calllist", i, fido2str(calllist[i].addr, 0x01f));
memset(&calllist[i], 0, sizeof(tocall));
}
}

View File

@ -1335,11 +1335,12 @@ void *scheduler(void)
break;
}
if (calllist[call_entry].addr.point) {
sprintf(opts, "%sp%u.f%u.n%u.z%u", port, calllist[call_entry].addr.point,
calllist[call_entry].addr.node, calllist[call_entry].addr.net, calllist[call_entry].addr.zone);
sprintf(opts, "%sp%u.f%u.n%u.z%u.%s", port, calllist[call_entry].addr.point,
calllist[call_entry].addr.node, calllist[call_entry].addr.net,
calllist[call_entry].addr.zone, calllist[call_entry].addr.domain);
} else {
sprintf(opts, "%sf%u.n%u.z%u", port, calllist[call_entry].addr.node, calllist[call_entry].addr.net,
calllist[call_entry].addr.zone);
sprintf(opts, "%sf%u.n%u.z%u.%s", port, calllist[call_entry].addr.node, calllist[call_entry].addr.net,
calllist[call_entry].addr.zone, calllist[call_entry].addr.domain);
}
calllist[call_entry].taskpid = launch(cmd, opts, (char *)"mbcico", calllist[call_entry].callmode);
if (calllist[call_entry].taskpid)