I've been working with smtp_perf checks. This check always returns 0.0 in beta 1.3.2, but was ok in 1.1.5. This patch fixes what was lost in some code refactoring I suppose:
Code:
$ diff src/libs/zbxsysinfo/common/common.c src/libs/zbxsysinfo/common/common.c.orig 1620c1620 < if( strncmp(buf, expect, strlen(expect)) == 0 ) --- > if( strcmp(buf, expect) == 0 )
Comment