1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

vhost: dont log null origin

This commit is contained in:
Bram Peeters 2021-03-29 19:56:59 +01:00 committed by Andy Green
parent e2f42387b7
commit 3ff6a9d462

View file

@ -867,7 +867,8 @@ lws_create_vhost(struct lws_context *context,
(void)mount_protocols[0];
lwsl_info(" mounting %s%s to %s\n",
mount_protocols[mounts->origin_protocol],
mounts->origin, mounts->mountpoint);
mounts->origin ? mounts->origin : "none",
mounts->mountpoint);
mounts = mounts->mount_next;
}