1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

ctdbd: Use struct initialization

2 lines less

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Volker Lendecke 2020-01-17 11:28:31 +01:00 committed by Jeremy Allison
parent b274bc698e
commit 42a3e2e503

View File

@ -1173,7 +1173,7 @@ static void ctdb_accept_client(struct tevent_context *ev,
*/
static int ux_socket_bind(struct ctdb_context *ctdb)
{
struct sockaddr_un addr;
struct sockaddr_un addr = { .sun_family = AF_UNIX };
int ret;
ctdb->daemon.sd = socket(AF_UNIX, SOCK_STREAM, 0);
@ -1181,8 +1181,6 @@ static int ux_socket_bind(struct ctdb_context *ctdb)
return -1;
}
memset(&addr, 0, sizeof(addr));
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, ctdb->daemon.name, sizeof(addr.sun_path)-1);
if (! sock_clean(ctdb->daemon.name)) {