Restore cvs
This commit is contained in:
@@ -103,7 +103,7 @@ chat.o: ../config.h ../lib/mbselib.h config.h chat.h ttyio.h
|
||||
dial.o: ../config.h ../lib/mbselib.h ../lib/users.h ../lib/nodelist.h ../lib/mbsedb.h config.h chat.h ttyio.h session.h dial.h
|
||||
dietifna.o: ../config.h ../lib/mbselib.h ../lib/nodelist.h ttyio.h session.h emsi.h dietifna.h respfreq.h filelist.h xmrecv.h xmsend.h
|
||||
emsidat.o: ../config.h ../lib/mbselib.h ../lib/users.h ../lib/nodelist.h ../lib/mbsedb.h emsi.h session.h lutil.h config.h emsidat.h filetime.h
|
||||
filelist.o: ../config.h ../lib/mbselib.h ../lib/nodelist.h config.h session.h filelist.h
|
||||
filelist.o: ../config.h ../lib/mbselib.h ../lib/nodelist.h ../lib/users.h ../lib/mbsedb.h config.h session.h filelist.h
|
||||
openfile.o: ../config.h ../lib/mbselib.h config.h lutil.h openfile.h
|
||||
openport.o: ../config.h ../lib/mbselib.h ulock.h ttyio.h mbcico.h openport.h
|
||||
opentcp.o: ../config.h ../lib/mbselib.h ../lib/nodelist.h ../lib/users.h ../lib/mbsedb.h session.h ttyio.h openport.h opentcp.h
|
||||
|
@@ -457,7 +457,7 @@ SM_STATE(WaitAddr)
|
||||
history.aka.net = remote->addr->net;
|
||||
history.aka.node = remote->addr->node;
|
||||
history.aka.point = remote->addr->point;
|
||||
sprintf(history.aka.domain, "%s", remote->addr->domain);
|
||||
sprintf(history.aka.domain, "%s", printable(remote->addr->domain, 0));
|
||||
|
||||
SM_PROCEED(SendPasswd)
|
||||
} else if (bp.rxbuf[0] == MM_BSY) {
|
||||
@@ -756,7 +756,7 @@ SM_STATE(WaitAddr)
|
||||
history.aka.net = remote->addr->net;
|
||||
history.aka.node = remote->addr->node;
|
||||
history.aka.point = remote->addr->point;
|
||||
sprintf(history.aka.domain, "%s", remote->addr->domain);
|
||||
sprintf(history.aka.domain, "%s", printable(remote->addr->domain, 0));
|
||||
|
||||
SM_PROCEED(IsPasswd)
|
||||
|
||||
|
@@ -149,7 +149,7 @@ int call(faddr *addr)
|
||||
history.aka.node = addr->node;
|
||||
history.aka.point = addr->point;
|
||||
if (addr->domain && strlen(addr->domain))
|
||||
sprintf(history.aka.domain, "%s", addr->domain);
|
||||
sprintf(history.aka.domain, "%s", printable(addr->domain, 0));
|
||||
|
||||
/*
|
||||
* Extract the protocol from the URL.
|
||||
|
@@ -396,7 +396,7 @@ int scanemsidat(char *buf)
|
||||
history.aka.net = remote->addr->net;
|
||||
history.aka.node = remote->addr->node;
|
||||
history.aka.point = remote->addr->point;
|
||||
sprintf(history.aka.domain, "%s", remote->addr->domain);
|
||||
sprintf(history.aka.domain, "%s", printable(remote->addr->domain, 0));
|
||||
}
|
||||
|
||||
if (emsi_remote_password)
|
||||
|
@@ -31,6 +31,8 @@
|
||||
#include "../config.h"
|
||||
#include "../lib/mbselib.h"
|
||||
#include "../lib/nodelist.h"
|
||||
#include "../lib/users.h"
|
||||
#include "../lib/mbsedb.h"
|
||||
#include "config.h"
|
||||
#include "session.h"
|
||||
#include "filelist.h"
|
||||
@@ -422,9 +424,9 @@ file_list *create_filelist(fa_list *al, char *fl, int create)
|
||||
fa->point = strtol(digit, NULL, 32);
|
||||
for (tmpa = al; tmpa; tmpa = tmpa->next) {
|
||||
if ((fa->zone==tmpa->addr->zone) && (fa->net==tmpa->addr->net) &&
|
||||
(fa->node==tmpa->addr->node) && (fa->point==tmpa->addr->point) &&
|
||||
strchr(fl, flavor))
|
||||
check_filebox(temp, &st);
|
||||
(fa->node==tmpa->addr->node) && (fa->point==tmpa->addr->point) && strchr(fl, flavor))
|
||||
if (SearchFidonet(tmpa->addr->zone))
|
||||
check_filebox(temp, &st);
|
||||
}
|
||||
tidy_faddr(fa);
|
||||
}
|
||||
@@ -458,8 +460,9 @@ file_list *create_filelist(fa_list *al, char *fl, int create)
|
||||
for (tmpa = al; tmpa; tmpa = tmpa->next) {
|
||||
if ((fa->zone==tmpa->addr->zone) && (fa->net==tmpa->addr->net) &&
|
||||
(fa->node==tmpa->addr->node) && (fa->point==tmpa->addr->point) &&
|
||||
strchr(fl, flavor))
|
||||
check_filebox(temp, &st);
|
||||
strchr(fl, flavor))
|
||||
if (SearchFidonet(tmpa->addr->zone))
|
||||
check_filebox(temp, &st);
|
||||
}
|
||||
}
|
||||
tidy_faddr(fa);
|
||||
|
@@ -443,7 +443,7 @@ SM_STATE(scan_packet)
|
||||
history.aka.node = remote->addr->node;
|
||||
history.aka.point = remote->addr->point;
|
||||
if (remote->addr->domain && strlen(remote->addr->domain))
|
||||
sprintf(history.aka.domain, "%s", remote->addr->domain);
|
||||
sprintf(history.aka.domain, "%s", printable(remote->addr->domain, 0));
|
||||
|
||||
if (((nlent=getnlent(remote->addr))) && (nlent->pflag != NL_DUMMY)) {
|
||||
Syslog('+', "remote is a listed system");
|
||||
|
@@ -237,8 +237,8 @@ int outstat()
|
||||
fa->point = strtol(digit, NULL, 32);
|
||||
if (SearchFidonet(fa->zone)) {
|
||||
fa->domain = xstrcpy(fidonet.domain);
|
||||
checkdir(temp, fa, flavor);
|
||||
}
|
||||
checkdir(temp, fa, flavor);
|
||||
tidy_faddr(fa);
|
||||
}
|
||||
}
|
||||
@@ -265,12 +265,12 @@ int outstat()
|
||||
if ((n==4) || ((n==5) && (tolower(c)=='h'))) {
|
||||
if (SearchFidonet(fa->zone)) {
|
||||
fa->domain = xstrcpy(fidonet.domain);
|
||||
}
|
||||
if (n==4)
|
||||
flavor = 'o';
|
||||
else
|
||||
flavor = 'h';
|
||||
checkdir(temp, fa, flavor);
|
||||
if (n==4)
|
||||
flavor = 'o';
|
||||
else
|
||||
flavor = 'h';
|
||||
checkdir(temp, fa, flavor);
|
||||
}
|
||||
}
|
||||
tidy_faddr(fa);
|
||||
}
|
||||
|
Reference in New Issue
Block a user