1 --- strhash.c.orig 2004-08-27 15:27:37.000000000 -0700
2 +++ strhash.c 2004-08-27 15:29:08.000000000 -0700
5 static int _hash(int size, char *key);
6 static hash_node *list_find(caddr_t key, hash_node *head);
7 +static int assign_key(char *key, hash_node *node);
15 - static int assign_key();
17 hash_node *new = (hash_node *)malloc(sizeof(hash_node));
19 if (!new || !assign_key(key, new)){