printpath() had some cut & paste tests of "c" - but
nothing had set it yet other than c=0, so testing it
is pointless. Just remove tests for non-zero "c"
until we might have set it to something interesting.
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
c = 0;
printf(" (");
if (qstat.qs_flags & XFS_QUOTA_UDQ_ENFD)
- c = printf("%suquota", c ? ", " : "");
+ c = printf("uquota");
else if (qstat.qs_flags & XFS_QUOTA_UDQ_ACCT)
- c = printf("%suqnoenforce", c ? ", " : "");
+ c = printf("uqnoenforce");
if (qstat.qs_flags & XFS_QUOTA_GDQ_ENFD)
c = printf("%sgquota", c ? ", " : "");
else if (qstat.qs_flags & XFS_QUOTA_GDQ_ACCT)