Package:vde2
Version;2.1.6+r154-1
Severity:important
Tags:patch

bootp.h has some field that are declared short int and long int. Therefore it 
fail compilation. The patch below fix the problem.

Regards 

Bastien
-- 

"ROUCARIES Bastien"
                                                   [EMAIL PROTECTED]
-------------------------------------------------------------------------------
DO NOT WRITE TO [EMAIL PROTECTED] OR BE BLACKLISTED
--- bootp.h.old	2005-09-22 23:11:23.000000000 +0200
+++ bootp.h	2007-12-23 21:14:43.000000000 +0100
@@ -98,9 +98,9 @@
     uint8_t bp_htype;
     uint8_t bp_hlen;
     uint8_t bp_hops;
-    unsigned long bp_xid;
-    unsigned short bp_secs;
-    unsigned short unused;
+    uint32_t bp_xid;
+    uint16_t bp_secs;
+    uint16_t unused;
     struct in_addr bp_ciaddr;
     struct in_addr bp_yiaddr;
     struct in_addr bp_siaddr;

Reply via email to