Fixed AddBBS function for un_attach

This commit is contained in:
Michiel Broek 2004-07-20 19:36:12 +00:00
parent 8b05c8121a
commit ff7275a472

View File

@ -285,18 +285,16 @@ int Add_BBS(qualify **qal)
/* /*
* With the path to the 8.3 name, we can check if this file * With the path to the 8.3 name, we can check if this file
* is attached for any possible downlink. * is attached for any possible downlink. We use the qualify
* We must get the qualify list passed so we have a quick systems list. * list created by the ptic function to check connected nodes
* only.
*/ */
Syslog('p', "Enter un_attach loop");
for (tmpq = *qal; tmpq; tmpq = tmpq->next) { for (tmpq = *qal; tmpq; tmpq = tmpq->next) {
Syslog('p', "loop");
if (tmpq->send) { if (tmpq->send) {
taka = fido2faddr(tmpq->aka); taka = fido2faddr(tmpq->aka);
un_attach(taka, temp2); un_attach(taka, temp2);
tidy_faddr(taka); tidy_faddr(taka);
} }
Syslog('p', "done");
} }
if (unlink(temp2) != 0) if (unlink(temp2) != 0)