Dimitry Andric 3ac0e4769e Avoid taking the address of a packed struct member in mfiutil
Fix a clang 4.0.0 warning about taking the address of a packed member of
struct mfi_evt in mfiutil:

    usr.sbin/mfiutil/mfi_evt.c:583:30: error: taking address of packed
    member 'members' of class or structure 'mfi_evt' may result in an
    unaligned pointer value [-Werror,-Waddress-of-packed-member]
                            if (parse_locale(optarg, &filter.members.locale) < 0) {
                                                      ^~~~~~~~~~~~~~~~~~~~~

Use a local variable instead, and copy that into the struct.

Reviewed by:	jhb
MFC after:	3 days
Differential Revision:	https://reviews.freebsd.org/D9069
2017-01-09 19:39:35 +00:00
..
2017-01-05 21:28:25 +00:00
2016-01-21 18:41:55 +00:00
2016-11-13 17:55:27 +00:00
2017-01-08 06:58:42 +00:00
2016-12-27 17:13:31 +00:00
2017-01-04 00:39:06 +00:00
2016-09-21 10:58:58 +00:00
2016-12-02 11:30:21 +00:00
2016-12-26 19:27:12 +00:00
2016-04-14 11:41:30 +00:00
2016-08-23 13:43:43 +00:00
2016-04-20 21:32:34 +00:00
2016-11-08 23:59:41 +00:00
2017-01-01 10:37:10 +00:00
2016-10-21 15:23:54 +00:00
2016-12-10 12:48:48 +00:00
2016-04-14 12:25:00 +00:00
2017-01-09 00:25:33 +00:00
2016-09-30 20:35:12 +00:00
2016-09-04 12:17:57 +00:00
2016-12-02 06:07:27 +00:00