dump postun triggers properly

CVS patchset: 2099
CVS date: 1998/04/30 20:34:08
This commit is contained in:
ewt 1998-04-30 20:34:08 +00:00
parent 5cbb2405f4
commit 9e5c81ab8b
1 changed files with 3 additions and 1 deletions

View File

@ -339,8 +339,10 @@ static int triggertypeTag(Header h, int_32 * type, void ** data,
if (flags[j] & RPMSENSE_TRIGGERIN)
conds[i] = strdup("in");
else
else if (flags[j] & RPMSENSE_TRIGGERUN)
conds[i] = strdup("un");
else
conds[i] = strdup("postun");
break;
}
}