-
Change Request
-
Resolution: Unresolved
-
Minor
-
None
-
None
-
Windows
Zabbix should use _wfopen() function to create/open log files on Windows to support unicode names. We can add zbx_fopen() function like it was done with zbx_open():
int __zbx_open(const char *pathname, int flags) { int ret; wchar_t *wpathname; wpathname = zbx_utf8_to_unicode(pathname); ret = _wopen(wpathname, flags); zbx_free(wpathname); return ret; }