Fixed a internet call problem when one of the protocols was forbidden
This commit is contained in:
parent
bf178e4261
commit
63ef73187a
@ -22,6 +22,8 @@ v0.35.03 06-Jul-2002
|
|||||||
mbcico:
|
mbcico:
|
||||||
Changed IsDoing information.
|
Changed IsDoing information.
|
||||||
Makes use of the node nodelist override settings.
|
Makes use of the node nodelist override settings.
|
||||||
|
Fixed a bug that mbcico refused to do internet calls when one
|
||||||
|
of the No IBN, No ITN or No IFC flags was set.
|
||||||
|
|
||||||
mbout:
|
mbout:
|
||||||
Makes use of the node nodelist override settings.
|
Makes use of the node nodelist override settings.
|
||||||
|
@ -150,7 +150,7 @@ int call(faddr *addr)
|
|||||||
* First see if this node can be reached over the internet and
|
* First see if this node can be reached over the internet and
|
||||||
* that internet calls are allowed.
|
* that internet calls are allowed.
|
||||||
*/
|
*/
|
||||||
if (nlent->iflags && ((localoptions & (NOIBN | NOITN | NOIFC)) == 0)) {
|
if (nlent->iflags && ((localoptions & (NOIBN & NOITN & NOIFC)) == 0)) {
|
||||||
if (!inetaddr) {
|
if (!inetaddr) {
|
||||||
Syslog('d', "Trying to find IP address...");
|
Syslog('d', "Trying to find IP address...");
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user