From b161f84ea64d724d02383dd854eb4bc1f407da80 Mon Sep 17 00:00:00 2001 From: ewt Date: Mon, 6 Oct 1997 18:00:11 +0000 Subject: [PATCH] fflags query formatter handles ghosts CVS patchset: 1842 CVS date: 1997/10/06 18:00:11 --- lib/formats.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/formats.c b/lib/formats.c index a834594..836c0eb 100644 --- a/lib/formats.c +++ b/lib/formats.c @@ -121,6 +121,8 @@ static char * fflagsFormat(int_32 type, const void * data, strcat(buf, "m"); if (anint & RPMFILE_NOREPLACE) strcat(buf, "n"); + if (anint & RPMFILE_GHOST) + strcat(buf, "g"); val = malloc(5 + padding); strcat(formatPrefix, "s"); -- 2.7.4