diff options
author | H. Peter Anvin <hpa@zytor.com> | 2010-06-21 22:49:58 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2010-06-21 22:49:58 -0700 |
commit | c739718ba5f15b2686a1f4288fdb9ceee36956b6 (patch) | |
tree | 12bd3f487a0d9a0fc5e0202f989a8ab4bc7044be | |
parent | 1004a727316071be17d7983323e736ee3b70ed01 (diff) | |
download | syslinux-c739718ba5f15b2686a1f4288fdb9ceee36956b6.tar.gz syslinux-c739718ba5f15b2686a1f4288fdb9ceee36956b6.tar.xz syslinux-c739718ba5f15b2686a1f4288fdb9ceee36956b6.zip |
<syslinux/config.h> fix the order of struct syslinux_ipinfo
Correct the order of the fields in struct syslinux_ipinfo to match
reality.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r-- | com32/include/syslinux/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/com32/include/syslinux/config.h b/com32/include/syslinux/config.h index 60d8d231..f315f44c 100644 --- a/com32/include/syslinux/config.h +++ b/com32/include/syslinux/config.h @@ -57,9 +57,9 @@ struct syslinux_version { struct syslinux_ipinfo { uint32_t ipver; uint32_t myip; - uint32_t netmask; - uint32_t gateway; uint32_t serverip; + uint32_t gateway; + uint32_t netmask; }; extern __nocommon struct syslinux_version __syslinux_version; |