X-Git-Url: https://git.gag.com/?p=debian%2Famanda;a=blobdiff_plain;f=common-src%2Fglib-util.c;h=7ba6702259e4040867a5ff661d83c008610f3333;hp=6320a1dea9e49549dcdb2850bae982e44b861f34;hb=b116e9366c7b2ea2c2eb53b0a13df4090e176235;hpb=fd48f3e498442f0cbff5f3606c7c403d0566150e diff --git a/common-src/glib-util.c b/common-src/glib-util.c index 6320a1d..7ba6702 100644 --- a/common-src/glib-util.c +++ b/common-src/glib-util.c @@ -130,6 +130,10 @@ void g_slist_free_full(GSList * list) { g_slist_free(list); } +void g_slist_free_full_gpointer(gpointer list) { + g_slist_free_full((GSList *)list); +} + void g_queue_free_full(GQueue * queue) { while (!g_queue_is_empty(queue)) { gpointer data; @@ -497,25 +501,36 @@ g_ptr_array_foreach (GPtrArray *array, #endif guint -g_str_case_hash( +g_str_amanda_hash( gconstpointer key) { /* modified version of glib's hash function, copyright * GLib Team and others 1997-2000. */ - const char *p = key; - guint h = g_ascii_toupper(*p); + const char *p; + guint h = 0; - if (h) - for (p += 1; *p != '\0'; p++) - h = (h << 5) - h + g_ascii_toupper(*p); + for (p = key; *p != '\0'; p++) + h = (h << 5) - h + (('_' == *p) ? '-' : g_ascii_tolower(*p)); return h; } gboolean -g_str_case_equal( +g_str_amanda_equal( gconstpointer v1, gconstpointer v2) { - return (0 == g_ascii_strcasecmp((char *)v1, (char *)v2)); + const gchar *p1 = v1, *p2 = v2; + while (*p1) { + /* letting '-' == '_' */ + if (!('-' == *p1 || '_' == *p1) || !('-' == *p2 || '_' == *p2)) + if (g_ascii_tolower(*p1) != g_ascii_tolower(*p2)) + return FALSE; + + p1++; + p2++; + } + + /* p1 is at '\0' is p2 too? */ + return *p2? FALSE : TRUE; }