| commit | a9f6a9daec11a41bd9309df580d110aa1d6c1d83 | [log] [tgz] |
|---|---|---|
| author | Patrik Stridvall <ps@leissner.se> | Tue Oct 24 02:22:16 2000 +0000 |
| committer | Alexandre Julliard <julliard@winehq.org> | Tue Oct 24 02:22:16 2000 +0000 |
| tree | 28b9a3f3ff5e2bb8826c6823ca276d9e204308f6 | |
| parent | f87b96e711f35e14774fccb01303c69f2d3b3cf6 [diff] [blame] |
Explicitly initialize structures.
diff --git a/server/request.c b/server/request.c index 9853e1e..8865604 100644 --- a/server/request.c +++ b/server/request.c
@@ -78,7 +78,7 @@ /* socket communication static structures */ static struct iovec myiovec; -static struct msghdr msghdr = { NULL, 0, &myiovec, 1, }; +static struct msghdr msghdr = { NULL, 0, &myiovec, 1, /* remaining fields depend on system */ }; #ifndef HAVE_MSGHDR_ACCRIGHTS struct cmsg_fd {