db: --simulate never needs write access to db

So open the db in read-only mode instead. This allows --simulate to
be run as non-root user.
cute-signatures
Timo Teräs 2010-06-12 13:48:42 +03:00
parent 3062d681f9
commit 8b317678e3
1 changed files with 4 additions and 0 deletions

View File

@ -1037,6 +1037,10 @@ int apk_db_open(struct apk_database *db, struct apk_db_options *dbopts)
int r, rr = 0;
memset(db, 0, sizeof(*db));
if (apk_flags & APK_SIMULATE) {
dbopts->open_flags &= ~(APK_OPENF_CREATE | APK_OPENF_WRITE);
dbopts->open_flags |= APK_OPENF_READ;
}
if (dbopts->open_flags == 0) {
msg = "Invalid open flags (internal error)";
r = -1;