mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-10-15 17:05:45 +08:00
Update to FreeBSD head 2018-02-01
Git mirror commit d079ae0442af8fa3cfd6d7ede190d04e64a2c0d4. Update #3472.
This commit is contained in:
@@ -298,12 +298,12 @@ parse_client_statement(FILE *cfile, struct interface_info *ip,
|
||||
}
|
||||
}
|
||||
|
||||
int
|
||||
parse_X(FILE *cfile, u_int8_t *buf, int max)
|
||||
unsigned
|
||||
parse_X(FILE *cfile, u_int8_t *buf, unsigned max)
|
||||
{
|
||||
int token;
|
||||
char *val;
|
||||
int len;
|
||||
unsigned len;
|
||||
|
||||
token = peek_token(&val, cfile);
|
||||
if (token == NUMBER_OR_NAME || token == NUMBER) {
|
||||
@@ -687,14 +687,14 @@ parse_option_decl(FILE *cfile, struct option_data *options)
|
||||
int token;
|
||||
u_int8_t buf[4];
|
||||
u_int8_t hunkbuf[1024];
|
||||
int hunkix = 0;
|
||||
unsigned hunkix = 0;
|
||||
char *vendor;
|
||||
char *fmt;
|
||||
struct universe *universe;
|
||||
struct option *option;
|
||||
struct iaddr ip_addr;
|
||||
u_int8_t *dp;
|
||||
int len;
|
||||
unsigned len;
|
||||
int nul_term = 0;
|
||||
|
||||
token = next_token(&val, cfile);
|
||||
|
Reference in New Issue
Block a user