From be39f49a5461d5804e4391266dfea6dd076691f4 Mon Sep 17 00:00:00 2001 From: Aurelien Foret Date: Fri, 17 Feb 2006 22:35:26 +0000 Subject: prepend library function names with _alpm (helped with the patch from VMiklos ) added log and event callbacks to sync_commit internal transactions --- src/util/convertdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/util/convertdb.c') diff --git a/src/util/convertdb.c b/src/util/convertdb.c index 390fa3e3..4d3f901d 100644 --- a/src/util/convertdb.c +++ b/src/util/convertdb.c @@ -115,7 +115,7 @@ int main(int argc, char* argv[]) /* check for backup designation and frontslashes that shouldn't be there */ if(line[0] == '*') ptr++; if(*ptr == '/') ptr++; - if(line[0] == '*') backup = pm_list_add(backup, strdup(ptr)); + if(line[0] == '*') backup = _alpm_list_add(backup, strdup(ptr)); fprintf(fp, "%s\n", ptr); } -- cgit v1.2.3-24-g4f1b