diff options
| author | alex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2006-10-30 08:13:15 +0000 |
|---|---|---|
| committer | alex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2006-10-30 08:13:15 +0000 |
| commit | 8899d79568c6e3e425d12327fbc87920d4cafe7d (patch) | |
| tree | 88f4aace1a7e79cd6dada9429be2560786406915 | |
| parent | 2b1a4e24fcc63dc9b8f4c3093014d2c821ed7b7f (diff) | |
| download | zabbix-8899d79568c6e3e425d12327fbc87920d4cafe7d.tar.gz zabbix-8899d79568c6e3e425d12327fbc87920d4cafe7d.tar.xz zabbix-8899d79568c6e3e425d12327fbc87920d4cafe7d.zip | |
- fixed assignment of default listen port for Win agent (Eugene)
git-svn-id: svn://svn.zabbix.com/trunk@3404 97f52cf1-0a1b-0410-bd0e-c28be96e8082
| -rw-r--r-- | ChangeLog | 1 | ||||
| -rw-r--r-- | src/zabbix_agent_win32/config.cpp | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -12,6 +12,7 @@ Changes for 1.3: Integrated from 1.1.x + - fixed assignment of default listen port for Win agent (Eugene) - changed return value for 'net.tcp.port[]' of Win agent (Eugene) - added images for postgres (Eugene) - fixed perofmance problem in Status of Triggers (Alexei) diff --git a/src/zabbix_agent_win32/config.cpp b/src/zabbix_agent_win32/config.cpp index 82c86202..2653b963 100644 --- a/src/zabbix_agent_win32/config.cpp +++ b/src/zabbix_agent_win32/config.cpp @@ -347,7 +347,7 @@ CHECK_MEMORY(main, "ReadConfig", "fopen==NULL"); n=atoi(ptr); if ((n<1)||(n>65535)) { - confListenPort=10000; + confListenPort=10050; errors++; if (IsStandalone()) printf("Error in configuration file, line %d: invalid port number (%s)\n",sourceLine,ptr); |
