/* Assemble the SWID generator command */
if (this->full_tags)
{
- snprintf(command, BUF_LEN, "%s swid --entity-name \"%s\" %s%s",
- generator, entity_name,
- pretty ? "--pretty" : "--doc-separator $'\n\n'",
- full ? " --full" : "");
+ snprintf(command, BUF_LEN, "%s swid --entity-name \"%s\" "
+ "--doc-separator $'\n\n'%s%s", generator, entity_name,
+ pretty ? " --pretty" : "", full ? " --full" : "");
}
else
{
if (this->full_tags)
{
- DBG2(DBG_IMC, "SWID tags generated by package manager:");
+ DBG2(DBG_IMC, "SWID tag generation by package manager");
status = read_swid_tags(this, file);
}
else
{
- DBG2(DBG_IMC, "SWID tag IDs generated by package manager:");
+ DBG2(DBG_IMC, "SWID tag ID generation by package manager");
status = read_swid_tag_ids(this, file);
}
pclose(file);