diff options
| author | sasha <sasha@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2008-02-16 15:01:08 +0000 |
|---|---|---|
| committer | sasha <sasha@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2008-02-16 15:01:08 +0000 |
| commit | 370f39f3cdd50af040a4e7976e97c6f957fdd9e8 (patch) | |
| tree | d21cc5497fd7c3816b8d70869aae051bda16668b /src/libs/zbxcommon | |
| parent | 32dfa1a28f9b82fbbbacf137c4e2f13dfedd92f5 (diff) | |
| download | zabbix-370f39f3cdd50af040a4e7976e97c6f957fdd9e8.tar.gz zabbix-370f39f3cdd50af040a4e7976e97c6f957fdd9e8.tar.xz zabbix-370f39f3cdd50af040a4e7976e97c6f957fdd9e8.zip | |
- [DEV-16] Support of IPv6
Minor fix
[svn merge svn://svn.zabbix.com/branches/1.4 -r5319:5361]
git-svn-id: svn://svn.zabbix.com/trunk@5362 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'src/libs/zbxcommon')
| -rw-r--r-- | src/libs/zbxcommon/misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/zbxcommon/misc.c b/src/libs/zbxcommon/misc.c index 56dceed9..490cffb6 100644 --- a/src/libs/zbxcommon/misc.c +++ b/src/libs/zbxcommon/misc.c @@ -456,7 +456,7 @@ int expand_ipv6(const char *ip, char *str, size_t str_len ) zbx_snprintf(str, str_len, "%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x", i[0], i[1], i[2], i[3], i[4], i[5], i[6], i[7]); ret = SUCCEED; out: - zabbix_log(LOG_LEVEL_DEBUG, "End expand_ipv6(ip:%s,str:%s,ret:%s)", ip, str, ret == SUCCEED ? "SUCCEED" : "FAIL"); + zabbix_log(LOG_LEVEL_DEBUG, "End expand_ipv6(ip:%s):%s", ip, ret == SUCCEED ? "SUCCEED" : "FAIL"); return ret; } |
