summaryrefslogtreecommitdiff
path: root/src/shutdownd/shutdownd.c
diff options
context:
space:
mode:
authorThomas Hindoe Paaboel Andersen <phomes@gmail.com>2014-09-27 00:25:09 +0200
committerThomas Hindoe Paaboel Andersen <phomes@gmail.com>2014-09-27 00:30:00 +0200
commitb748c7596f79945be5263a0d1c88de64eb0c5146 (patch)
tree150952e9cde7453496b00cca1d5b346d9478f58d /src/shutdownd/shutdownd.c
parent45f1b67a70a749ca14a7df256a177de74a3e73f6 (diff)
shutdownd: clean up initialization of struct
No functional change. We just don't assign the value twice. Found by coverity. Fixes: CID#1237616 and #1237617
Diffstat (limited to 'src/shutdownd/shutdownd.c')
-rw-r--r--src/shutdownd/shutdownd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shutdownd/shutdownd.c b/src/shutdownd/shutdownd.c
index 99aa4b32b..0f008a610 100644
--- a/src/shutdownd/shutdownd.c
+++ b/src/shutdownd/shutdownd.c
@@ -52,8 +52,8 @@ static int read_packet(int fd, union shutdown_buffer *_b) {
union shutdown_buffer b; /* We maintain our own copy here, in
* order not to corrupt the last message */
struct iovec iovec = {
- iovec.iov_base = &b,
- iovec.iov_len = sizeof(b) - 1,
+ .iov_base = &b,
+ .iov_len = sizeof(b) - 1,
};
union {
struct cmsghdr cmsghdr;