1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2024-12-14 10:13:05 +02:00

Add missing parens.

This commit is contained in:
David Steele 2019-03-26 16:00:15 +02:00
parent 5ee8388f48
commit 7364d859da

View File

@ -292,7 +292,7 @@ tlsClientOpen(TlsClient *this)
// Set hits that narrow the type of address we are looking for -- we'll take ipv4 or ipv6
struct addrinfo hints;
memset(&hints, 0, sizeof hints);
memset(&hints, 0, sizeof(hints));
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
hints.ai_protocol = IPPROTO_TCP;