From a840c40a485076ed3b5f43e79ddb4bec59afb862 Mon Sep 17 00:00:00 2001 From: hugetoad Date: Tue, 27 Jun 2006 07:29:32 +0000 Subject: - changed type of lastlogsize to long in structure METRIC (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@2980 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- src/zabbix_agent/active.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/zabbix_agent') diff --git a/src/zabbix_agent/active.h b/src/zabbix_agent/active.h index 39e33dcf..868ed5a2 100644 --- a/src/zabbix_agent/active.h +++ b/src/zabbix_agent/active.h @@ -32,7 +32,9 @@ METRIC int refresh; int nextcheck; int status; - int lastlogsize; +/* Must be long for fseek() */ +/* int lastlogsize;*/ + long lastlogsize; }; pid_t child_active_make(int i,char *server, int port); -- cgit