networkd: fix size of MTUBytes so that it does not overwrites ARP (#4707)

config_parse_iec_size overwrites the next varible that is ARP.
Now the mtu is unsigned . Make it size_t .

Fixes #4644
This commit is contained in:
Susant Sahani 2016-11-23 21:03:01 +05:30 committed by Lennart Poettering
parent a4021390fe
commit b8b40317d0

View file

@ -174,7 +174,7 @@ struct Network {
IPv6PrivacyExtensions ipv6_privacy_extensions;
struct ether_addr *mac;
unsigned mtu;
size_t mtu;
int arp;
uint32_t iaid;
DUID duid;