utf8-everywhere: Fixed log_write to use access instead of g_access.
This commit is contained in:
parent
6560e6365a
commit
b969665e47
|
@ -705,7 +705,7 @@ log_write (session *sess, char *text)
|
|||
server_get_network (sess->server, FALSE));
|
||||
if (file)
|
||||
{
|
||||
if (access (file, F_OK) != 0)
|
||||
if (g_access (file, F_OK) != 0)
|
||||
{
|
||||
close (sess->logfd);
|
||||
sess->logfd = log_open_file (sess->server->servername, sess->channel,
|
||||
|
|
Loading…
Reference in New Issue