From 100b59f4bd207ac36aca39b6f011efbb132fe1cf Mon Sep 17 00:00:00 2001 From: laforge Date: Thu, 16 Nov 2000 17:20:52 +0000 Subject: Major update. Almost everything has changed. - no more dynamic allocations at runtime - only once at startup - less list traversal through interpreter and key hashes - output plugins can request only certain results! --- ulogd/extensions/ulogd_OPRINT.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ulogd/extensions/ulogd_OPRINT.c') diff --git a/ulogd/extensions/ulogd_OPRINT.c b/ulogd/extensions/ulogd_OPRINT.c index 0b551b6..3fa42ed 100644 --- a/ulogd/extensions/ulogd_OPRINT.c +++ b/ulogd/extensions/ulogd_OPRINT.c @@ -1,11 +1,11 @@ -/* ulogd_MAC.c, Version $Revision: 1.3 $ +/* ulogd_MAC.c, Version $Revision: 1.4 $ * * ulogd output target for logging to a file * * (C) 2000 by Harald Welte * This software is released under the terms of GNU GPL * - * $Id: ulogd_OPRINT.c,v 1.3 2000/09/12 14:29:37 laforge Exp $ + * $Id: ulogd_OPRINT.c,v 1.4 2000/09/22 06:54:33 laforge Exp $ * */ @@ -34,7 +34,7 @@ int _output_print(ulog_iret_t *res) ulog_iret_t *ret; fprintf(of, "===>PACKET BOUNDARY\n"); - for (ret = res; ret; ret = ret->next) { + for (ret = res; ret; ret = ret->cur_next) { fprintf(of,"%s=", ret->key); switch (ret->type) { case ULOGD_RET_STRING: -- cgit v1.2.3