windows no chown on log file generation
https://github.com/warmcat/libwebsockets/issues/524 Signed-off-by: Andy Green <andy@warmcat.com>
This commit is contained in:
parent
3baed037c9
commit
d5c43f4a6e
1 changed files with 2 additions and 0 deletions
|
@ -373,11 +373,13 @@ lws_create_vhost(struct lws_context *context,
|
|||
info->log_filepath);
|
||||
goto bail;
|
||||
}
|
||||
#ifndef WIN32
|
||||
if (context->uid != -1)
|
||||
if (chown(info->log_filepath, context->uid,
|
||||
context->gid) == -1)
|
||||
lwsl_err("unable to chown log file %s\n",
|
||||
info->log_filepath);
|
||||
#endif
|
||||
} else
|
||||
vh->log_fd = LWS_INVALID_FILE;
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue