Fails to build on Clang due to -Werror catching something scary:
Index: src/turnserver.c
===================================================================
--- src/turnserver.c (revision 246)
+++ src/turnserver.c (working copy)
@@ -957,7 +957,7 @@
struct list_head* n2 = NULL;
if(tmp->relayed_transport_protocol != IPPROTO_TCP ||
- memcmp(tmp->key, account->key, sizeof(tmp->key) != 0))
+ memcmp(tmp->key, account->key, sizeof(tmp->key)) != 0)
{
continue;
}
Thank you. It is fixed in SVN revision 247.