index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Dan McGee <dan@archlinux.org> | 2011-03-23 03:05:45 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-03-23 03:07:08 -0500 |
commit | 39ce9b3afc6a544c2a5137bb58012d32723096e3 (patch) | |
tree | 24bb3c49670048b4f57acd8ba9e79df3b8fb5200 /lib/libalpm | |
parent | f7b577dc77667d8b7dc346e9754d9b203cc8068d (diff) |
-rw-r--r-- | lib/libalpm/be_sync.c | 2 |
diff --git a/lib/libalpm/be_sync.c b/lib/libalpm/be_sync.c index 9ca52de3..5eec8a73 100644 --- a/lib/libalpm/be_sync.c +++ b/lib/libalpm/be_sync.c @@ -421,6 +421,8 @@ static int sync_db_read(pmdb_t *db, struct archive *archive, } else if(strcmp(line, "%SHA256SUM%") == 0) { /* we don't do anything with this value right now */ READ_NEXT(line); + } else if(strcmp(line, "%PGPSIG%") == 0) { + READ_AND_STORE(pkg->pgpsig.encdata); } else if(strcmp(line, "%REPLACES%") == 0) { READ_AND_STORE_ALL(pkg->replaces); } else if(strcmp(line, "%DEPENDS%") == 0) { |