remove old timedif entry

This commit is contained in:
Mark 2004-09-28 20:52:25 +00:00
parent 45124e818c
commit 173bdd3f18
3 changed files with 2 additions and 4 deletions

1
opsb.c
View file

@ -526,7 +526,6 @@ static int ss_event_signon (CmdParams* cmdparams)
int startscan(scaninfo *scandata)
{
lnode_t *scannode;
unsigned char a, b, c, d;
char *buf;
int buflen;

1
opsb.h
View file

@ -75,7 +75,6 @@ struct opsb {
int maxbytes;
int timeout;
int socks;
int timedif;
int open;
int scanned;
char scanmsg[BUFSIZE];

View file

@ -131,11 +131,11 @@ void load_port(char *type, char *portname)
break;
}
prtlst = malloc(sizeof(port_list));
prtlst->type = proxy_list[i].type;
prtlst->type = proxy_list[j].type;
prtlst->port = atoi(av[j]);
prtlst->noopen = 0;
lnode_create_append (opsb.ports, prtlst);
dlog (DEBUG1, "Added port %d for protocol %s", prtlst->port, proxy_list[i].name);
dlog (DEBUG1, "Added port %d for protocol %s", prtlst->port, proxy_list[j].name);
}
ns_free(av);
}