[tarantool-patches] Re: [PATCH 1/4] swim: move sockaddr_in checkers to swim_proto.h

Vladislav Shpilevoy v.shpilevoy at tarantool.org
Thu Apr 18 14:35:26 MSK 2019


Sorry, accidentally broke a test. The fix is
force pushed:

======================================================
swim_inaddr_is_empty(const struct sockaddr_in *addr)
 {
-	return addr->sin_port == 0 && addr->sin_addr.s_addr == 0;
+	return addr->sin_port == 0 || addr->sin_addr.s_addr == 0;
 }
======================================================




More information about the Tarantool-patches mailing list