summaryrefslogtreecommitdiff
path: root/src/log.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/log.c')
-rw-r--r--src/log.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/log.c b/src/log.c
index f1c16d1..bb0d79c 100644
--- a/src/log.c
+++ b/src/log.c
@@ -1,4 +1,4 @@
-/* $Id: log.c,v 1.25 2003-05-30 16:22:30 rjkaes Exp $
+/* $Id: log.c,v 1.26 2003-05-31 23:02:21 rjkaes Exp $
*
* Logs the various messages which tinyproxy produces to either a log file or
* the syslog daemon. Not much to it...
@@ -201,7 +201,7 @@ send_stored_logs(void)
int i;
- for (i = 0; i < vector_length(log_message_storage); ++i) {
+ for (i = 0; i != vector_length(log_message_storage); ++i) {
string = vector_getentry(log_message_storage, i, NULL);
ptr = strchr(string, ' ') + 1;