diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-05-04 22:23:02 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-05-04 22:23:02 +0000 |
commit | 710c64d18789eb25fed232f87c40158bfcba7ad3 (patch) | |
tree | 34e7475a305623fa6743ed9ec5dd367dddc4eeee /sbin/dhclient/hash.c | |
parent | 5ec5305e22fc4dfccfa05a507821188925c211f7 (diff) |
do not overload libc function names causing linker troubles
Diffstat (limited to 'sbin/dhclient/hash.c')
-rw-r--r-- | sbin/dhclient/hash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/dhclient/hash.c b/sbin/dhclient/hash.c index 357370818c7..e570c73db31 100644 --- a/sbin/dhclient/hash.c +++ b/sbin/dhclient/hash.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hash.c,v 1.7 2004/05/04 20:28:40 deraadt Exp $ */ +/* $OpenBSD: hash.c,v 1.8 2004/05/04 22:23:01 mickey Exp $ */ /* Routines for manipulating hash tables... */ @@ -87,7 +87,7 @@ void add_hash(struct hash_table *table, unsigned char *name, int len, bp = new_hash_bucket(); if (!bp) { - warn("Can't add %s to hash table.", name); + warning("Can't add %s to hash table.", name); return; } bp->name = name; |