]> err.no Git - dpkg/commitdiff
Rename inv_alphasort to acmp and make it not invert the return code of strcoll; this...
authorTollef Fog Heen <tfheen@err.no>
Sun, 20 Jul 2008 17:18:56 +0000 (19:18 +0200)
committerTollef Fog Heen <tfheen@err.no>
Sun, 20 Jul 2008 17:18:56 +0000 (19:18 +0200)
src/filters.c

index b09ff557e1a8095f73f95249def4676cc8187a4d..de72aef02459f1c9a51d8421d3b35d9cdba57400 100644 (file)
@@ -90,8 +90,8 @@ loadfilter(const char *fn)
                ohshite(_("error closing configuration file '%.255s'"), fn);
 }
 
-static int inv_alphasort(const void *a, const void *b) {
-       return -1 * strcoll((char*)a, (char*) b);
+static int acmp(const void *a, const void *b) {
+       return strcoll((char*)a, (char*) b);
 }
 
 void
@@ -129,7 +129,7 @@ loadfilters(void)
                }
                free(file);
        }
-       qsort(names, i, sizeof(char *), inv_alphasort);
+       qsort(names, i, sizeof(char *), acmp);
        while (i > 0) {
                loadfilter(names[--i]);
                free(names[i]);