diff options
| author | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2006-06-27 07:29:32 +0000 |
|---|---|---|
| committer | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2006-06-27 07:29:32 +0000 |
| commit | a840c40a485076ed3b5f43e79ddb4bec59afb862 (patch) | |
| tree | b44fd2b467200f0ea3f72329a5650a0d83a4f095 /src/zabbix_agent | |
| parent | e2a49f81092e445f549e3cac4c0d57a2b14df7fb (diff) | |
| download | zabbix-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.h | 4 |
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); |
