X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=hash.c;h=96a97ac3ea90c86bca953c042a1f478f2f1ceea8;hb=a8477ebaa09990b3688164cbe5cf661c4189541d;hp=f04258956fe71ebe8fd18b0a8c6b8c49dd81aa4d;hpb=e83ad1be25aefea3ed21ec08edbaf2d5a72c4a9d;p=apps%2Fmadmutt.git diff --git a/hash.c b/hash.c index f042589..96a97ac 100644 --- a/hash.c +++ b/hash.c @@ -97,7 +97,7 @@ int hash_insert (HASH * table, const char *key, void *data, int allow_dup) int r; for (tmp = table->table[h], last = NULL; tmp; last = tmp, tmp = tmp->next) { - r = mutt_strcmp (tmp->key, key); + r = str_cmp (tmp->key, key); if (r == 0) { FREE (&ptr); return (-1); @@ -120,7 +120,7 @@ void *hash_find_hash (const HASH * table, int hash, const char *key) struct hash_elem *ptr = table->table[hash]; for (; ptr; ptr = ptr->next) { - if (mutt_strcmp (key, ptr->key) == 0) + if (str_cmp (key, ptr->key) == 0) return (ptr->data); } return NULL; @@ -133,7 +133,7 @@ void hash_delete_hash (HASH * table, int hash, const char *key, const void *data struct hash_elem **last = &table->table[hash]; while (ptr) { - if ((data == ptr->data || !data) && mutt_strcmp (ptr->key, key) == 0) { + if ((data == ptr->data || !data) && str_cmp (ptr->key, key) == 0) { *last = ptr->next; if (destroy) destroy (ptr->data);