]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
[BUILD] replaced u_int32_t with unsigned int.
authorWilly Tarreau <w@1wt.eu>
Sun, 15 Oct 2006 21:32:18 +0000 (23:32 +0200)
committerWilly Tarreau <w@1wt.eu>
Sun, 15 Oct 2006 21:32:18 +0000 (23:32 +0200)
Linux and BSD know about u_int32_t, while Solaris knows about uint32_t.
This is getting boring and unsigned int perfectly fits the goal for the
moment. Further investigation will be performed anyway.

include/types/buffers.h

index 3e33abf901698ae12217a5e54b6ef8493ae26b57..1788826f82b57f0ec2f6db337ea4c7662bea1902 100644 (file)
@@ -59,7 +59,7 @@ struct chunk {
 };
 
 struct buffer {
-       u_int32_t flags;                /* BF_* */
+       unsigned int flags;             /* BF_* */
        struct timeval rex;             /* expiration date for a read  */
        struct timeval wex;             /* expiration date for a write */
        struct timeval cex;             /* expiration date for a connect */