2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-31 22:35:25 +00:00

Compiler warnings (a few were bugfixes internal to HEAD development) silenced.

[ISC-Bugs #16133]
This commit is contained in:
David Hankins
2006-06-05 16:42:59 +00:00
parent 41c3f761a3
commit d19e2cf7de
4 changed files with 18 additions and 16 deletions

View File

@@ -2140,6 +2140,7 @@ void parse_client_lease_declaration PROTO ((struct parse *,
int parse_option_decl PROTO ((struct option_cache **, struct parse *));
void parse_string_list PROTO ((struct parse *, struct string_list **, int));
int parse_ip_addr PROTO ((struct parse *, struct iaddr *));
int parse_ip_addr_with_subnet(struct parse *, struct iaddrmatch *);
void parse_reject_statement PROTO ((struct parse *, struct client_config *));
/* dhcrelay.c */

View File

@@ -60,7 +60,7 @@ struct hash_bucket {
hashed_object_t *value;
};
typedef int (*hash_comparator_t)(const void *, const void *, unsigned long);
typedef int (*hash_comparator_t)(const void *, const void *, size_t);
struct hash_table {
unsigned hash_count;
@@ -152,6 +152,6 @@ void delete_hash_entry (struct hash_table *, const void *,
int hash_lookup (hashed_object_t **, struct hash_table *,
const void *, unsigned, const char *, int);
int hash_foreach (struct hash_table *, hash_foreach_func);
int casecmp (const void *s, const void *t, unsigned long len);
int casecmp (const void *s, const void *t, size_t len);
#endif /* OMAPI_HASH_H */