Commits

Mihai Moldovan authored ea1c7e87938
net/nxcomp: fix compile failure on 10.10+.

Newer clang versions bail out on array-pointer-comparisons.
No tags

net/nxcomp/files/patch-nxcomp_src_Loop.cpp-clang-array-pointer-compare.diff

Added
1 +--- src/Loop.cpp.old 2018-02-28 10:53:45.000000000 +0100
2 ++++ src/Loop.cpp 2018-03-02 06:00:22.000000000 +0100
3 +@@ -3573,7 +3573,7 @@ int SetupAuthInstance()
4 +
5 + if (control -> ProxyMode == proxy_server)
6 + {
7 +- if (authCookie != NULL && *authCookie != '\0')
8 ++ if (*authCookie != '\0')
9 + {
10 + if (useLaunchdSocket == 1)
11 + {

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut