[syslinux:master] <syslinux/config.h> fix the order of struct syslinux_ipinfo

syslinux-bot for H. Peter Anvin hpa at zytor.com
Mon Jun 21 22:51:10 PDT 2010


Commit-ID:  c739718ba5f15b2686a1f4288fdb9ceee36956b6
Gitweb:     http://syslinux.zytor.com/commit/c739718ba5f15b2686a1f4288fdb9ceee36956b6
Author:     H. Peter Anvin <hpa at zytor.com>
AuthorDate: Mon, 21 Jun 2010 22:49:58 -0700
Committer:  H. Peter Anvin <hpa at zytor.com>
CommitDate: Mon, 21 Jun 2010 22:49:58 -0700

<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 at zytor.com>


---
 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 60d8d23..f315f44 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;



More information about the Syslinux-commits mailing list