From: Willy Tarreau Date: Sun, 15 Oct 2006 21:32:18 +0000 (+0200) Subject: [BUILD] replaced u_int32_t with unsigned int. X-Git-Tag: v1.3.3~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=aad2e49034566440eb6585e14c82294a4960d4d1;p=thirdparty%2Fhaproxy.git [BUILD] replaced u_int32_t with unsigned int. 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. --- diff --git a/include/types/buffers.h b/include/types/buffers.h index 3e33abf901..1788826f82 100644 --- a/include/types/buffers.h +++ b/include/types/buffers.h @@ -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 */