]> git.ipfire.org Git - thirdparty/chrony.git/commitdiff
socket: fix typo in union declaration
authorMiroslav Lichvar <mlichvar@redhat.com>
Tue, 6 Aug 2019 15:50:37 +0000 (17:50 +0200)
committerMiroslav Lichvar <mlichvar@redhat.com>
Thu, 8 Aug 2019 15:32:48 +0000 (17:32 +0200)
socket.c

index 77d34998ae47a06e3ac2dfaf291b187ca3800e38..d9687d0c59dc244b00d5ca6a828b57fc1ec163f0 100644 (file)
--- 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)];