# Changed the calls to vector_getentry() to use the new calling

convention.
This commit is contained in:
Robert James Kaes 2003-05-30 16:22:30 +00:00
parent 1955dcd47b
commit af5e1e29f6
2 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $Id: log.c,v 1.24 2003-05-29 20:48:25 rjkaes Exp $
/* $Id: log.c,v 1.25 2003-05-30 16:22:30 rjkaes Exp $
*
* Logs the various messages which tinyproxy produces to either a log file or
* the syslog daemon. Not much to it...
@ -202,7 +202,7 @@ send_stored_logs(void)
int i;
for (i = 0; i < vector_length(log_message_storage); ++i) {
vector_getentry(log_message_storage, i, (void **)&string);
string = vector_getentry(log_message_storage, i, NULL);
ptr = strchr(string, ' ') + 1;
level = atoi(string);

View File

@ -1,4 +1,4 @@
/* $Id: reqs.c,v 1.99 2003-05-29 20:48:25 rjkaes Exp $
/* $Id: reqs.c,v 1.100 2003-05-30 16:22:30 rjkaes Exp $
*
* This is where all the work in tinyproxy is actually done. Incoming
* connections have a new child created for them. The child then
@ -128,7 +128,8 @@ check_allowed_connect_ports(int port)
return 1;
for (i = 0; i < vector_length(ports_allowed_by_connect); ++i) {
if (vector_getentry(ports_allowed_by_connect, i, (void **)&data) < 0)
data = vector_getentry(ports_allowed_by_connect, i, NULL);
if (!data)
return -1;
if (*data == port)