summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/util/convertdb.c2
-rw-r--r--src/util/vercmp.c2
2 files changed, 2 insertions, 2 deletions
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);
}
diff --git a/src/util/vercmp.c b/src/util/vercmp.c
index ebd9d871..70a4b044 100644
--- a/src/util/vercmp.c
+++ b/src/util/vercmp.c
@@ -39,7 +39,7 @@ int main(int argc, char *argv[])
return(0);
}
- ret = versioncmp(s1, s2);
+ ret = _alpm_versioncmp(s1, s2);
printf("%d\n", ret);
return(ret);
}