Commit 86619add authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

A couple of cleanups to get OSX to be more happy.

parent 83387b8b
......@@ -34,7 +34,7 @@
*/
#define ASSERT_SILO_THREAD(sc) \
do {assert(pthread_self() == (sc)->thread);} while (0)
do {assert(pthread_equal(pthread_self(), (sc)->thread));} while (0)
#define OC_F_NEEDFIXUP OC_F_PRIV
......
varnishtest "Test case for #1035"
varnish v1 -arg "-a 127.0.0.1:80 -b localhost:8080"
varnish v1 -arg "-a 127.0.0.1:80 -b 127.0.0.1:8080"
varnish v1 -cliok "param.set listen_address 127.0.0.1:80"
varnish v1 -clierr 106 "param.set listen_address 127.0.0.1:65540"
varnish v1 -clierr 106 "param.set listen_address 127.0.0.1:65536"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment