summaryrefslogtreecommitdiffstats
path: root/src/del.c
diff options
context:
space:
mode:
authorTimo Teras <timo.teras@iki.fi>2008-04-21 16:30:10 +0000
committerTimo Teras <timo.teras@iki.fi>2008-04-21 16:30:10 +0000
commit823283edca0d8403742999917a4ff0698ad641cb (patch)
treec023160837e616ca5ff5e85cc754cd3e17bd1d2e /src/del.c
parent951602e551bc56b433f7c6d908998b6289890b09 (diff)
Argument parsing. Some other stuff too.
Diffstat (limited to 'src/del.c')
-rw-r--r--src/del.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/del.c b/src/del.c
index c4d7539..2fc6048 100644
--- a/src/del.c
+++ b/src/del.c
@@ -18,8 +18,8 @@ static int del_main(int argc, char **argv)
struct apk_database db;
int i, j;
- apk_db_init(&db, "/home/fabled/tmproot/");
- apk_db_read_config(&db);
+ if (apk_db_open(&db, apk_root) < 0)
+ return -1;
if (db.world == NULL)
goto out;
@@ -38,7 +38,7 @@ static int del_main(int argc, char **argv)
apk_db_recalculate_and_commit(&db);
out:
- apk_db_free(&db);
+ apk_db_close(&db);
return 0;
}