I want to renew my ZABBIX from 1.6 to 1.6.1,
and I checked the difference between them.
In this process I discovered an difference point
that seems to be so fatal.
./zabbix-1.6.1/src/libs/zbxdbhigh/dbschema.c
-----
const char *db_schema =
-----
in v1.6
indent and blank character is [blank]
in v1.6.1
indent and blank character is [TAB]
and character 't' modifies to [blank]
e.g.
'integer' -> 'in eger'
this const 'db_schema' using at only with SQLite.
Does not this influence?
and I checked the difference between them.
In this process I discovered an difference point
that seems to be so fatal.
./zabbix-1.6.1/src/libs/zbxdbhigh/dbschema.c
-----
const char *db_schema =
-----
in v1.6
indent and blank character is [blank]
in v1.6.1
indent and blank character is [TAB]
and character 't' modifies to [blank]
e.g.
'integer' -> 'in eger'
this const 'db_schema' using at only with SQLite.
Does not this influence?
Comment