summaryrefslogtreecommitdiffstats
path: root/src/zabbix_agent
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-06-27 07:29:32 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-06-27 07:29:32 +0000
commita840c40a485076ed3b5f43e79ddb4bec59afb862 (patch)
treeb44fd2b467200f0ea3f72329a5650a0d83a4f095 /src/zabbix_agent
parente2a49f81092e445f549e3cac4c0d57a2b14df7fb (diff)
downloadzabbix-a840c40a485076ed3b5f43e79ddb4bec59afb862.tar.gz
zabbix-a840c40a485076ed3b5f43e79ddb4bec59afb862.tar.xz
zabbix-a840c40a485076ed3b5f43e79ddb4bec59afb862.zip
- changed type of lastlogsize to long in structure METRIC (Alexei)
git-svn-id: svn://svn.zabbix.com/trunk@2980 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'src/zabbix_agent')
-rw-r--r--src/zabbix_agent/active.h4
1 files changed, 3 insertions, 1 deletions
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);