From: Miroslav Lichvar Date: Tue, 6 Aug 2019 15:50:37 +0000 (+0200) Subject: socket: fix typo in union declaration X-Git-Tag: 4.0-pre1~154 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=81978f0ba02e307cb9b45b4e078e87ab904dda72;p=thirdparty%2Fchrony.git socket: fix typo in union declaration --- diff --git a/socket.c b/socket.c index 77d34998..d9687d0c 100644 --- a/socket.c +++ b/socket.c @@ -61,7 +61,7 @@ struct Message { union { NTP_Receive_Buffer ntp_msg; CMD_Request cmd_request; - CMD_Request cmd_reply; + CMD_Reply cmd_reply; } msg_buf; /* Aligned buffer for control messages */ struct cmsghdr cmsg_buf[CMSG_BUF_SIZE / sizeof (struct cmsghdr)];