diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2012-07-11 15:10:08 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2012-07-11 15:10:08 +0300 |
commit | 928386a317aad2be6ce1a76b4dbee5a948a6184a (patch) | |
tree | 3751740938d850853b657ed7d310f765cd0caed4 /lib/formats.c | |
parent | a3de720a842a1667cb47e53969f680777deb33d5 (diff) | |
download | librpm-tizen-928386a317aad2be6ce1a76b4dbee5a948a6184a.tar.gz librpm-tizen-928386a317aad2be6ce1a76b4dbee5a948a6184a.tar.bz2 librpm-tizen-928386a317aad2be6ce1a76b4dbee5a948a6184a.zip |
Report config and missinok flags in deptype format extension too
Diffstat (limited to 'lib/formats.c')
-rw-r--r-- | lib/formats.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/formats.c b/lib/formats.c index b830bbd11..653f43d45 100644 --- a/lib/formats.c +++ b/lib/formats.c @@ -233,6 +233,10 @@ static char * deptypeFormat(rpmtd td) argvAdd(&sdeps, "pretrans"); if (item & RPMSENSE_POSTTRANS) argvAdd(&sdeps, "posttrans"); + if (item & RPMSENSE_CONFIG) + argvAdd(&sdeps, "config"); + if (item & RPMSENSE_MISSINGOK) + argvAdd(&sdeps, "missingok"); if (sdeps) { val = argvJoin(sdeps, ","); |