1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00

util/testdb: fix up function naming

We shouldn't use the _alpm prefix (copy-paste issue, no big deal).

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2007-10-10 06:57:42 -05:00
parent 3c4e98f7b5
commit 5adb8d4b5a

View File

@ -31,15 +31,15 @@
#include <alpm.h>
#include <alpm_list.h>
int _alpm_str_cmp(const void *s1, const void *s2)
int str_cmp(const void *s1, const void *s2)
{
return(strcmp(s1, s2));
}
static void diffrqdby(const char *pkgname, alpm_list_t *oldrqdby, alpm_list_t *newrqdby)
{
oldrqdby = alpm_list_msort(oldrqdby, alpm_list_count(oldrqdby), _alpm_str_cmp);
newrqdby = alpm_list_msort(newrqdby, alpm_list_count(newrqdby), _alpm_str_cmp);
oldrqdby = alpm_list_msort(oldrqdby, alpm_list_count(oldrqdby), str_cmp);
newrqdby = alpm_list_msort(newrqdby, alpm_list_count(newrqdby), str_cmp);
alpm_list_t *i = oldrqdby;
alpm_list_t *j = newrqdby;
@ -93,7 +93,7 @@ void output_cb(pmloglevel_t level, char *fmt, va_list args)
}
}
int db_test(char *dbpath)
static int db_test(char *dbpath)
{
struct dirent *ent;
char path[PATH_MAX];