From d5c43f4a6eb830c5f88fb910e9dbf7d1f0ec0a01 Mon Sep 17 00:00:00 2001
From: Andy Green <andy@warmcat.com>
Date: Wed, 11 May 2016 19:00:15 +0800
Subject: [PATCH] windows no chown on log file generation

https://github.com/warmcat/libwebsockets/issues/524

Signed-off-by: Andy Green <andy@warmcat.com>
---
 lib/context.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/context.c b/lib/context.c
index 83be24b6..ac7d7d86 100644
--- a/lib/context.c
+++ b/lib/context.c
@@ -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
-- 
GitLab