use u32_t instead of u_int32_t

The style u_int32_t is not used anywhere else in the project, and is not
supported by the C standard, now using lwIP u32_t type. It was introduced
in 25e398a.
This commit is contained in:
chrysn 2014-11-11 16:28:27 +01:00 committed by Sylvain Rochet
parent 52dc9ef418
commit 36f470383b

View File

@ -972,7 +972,7 @@ static int ipcp_ackci(fsm *f, u_char *p, int len) {
#define ACKCIWINS(opt, addr) \
if (addr) { \
u_int32_t l; \
u32_t l; \
if ((len -= CILEN_ADDR) < 0) \
goto bad; \
GETCHAR(citype, p); \