security: Move error messages onto a single line

Error messages are exempt from the 80 columns rule. Move them
onto one line.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Pavel Hrdina <phrdina@redhat.com>
This commit is contained in:
Michal Privoznik 2023-08-25 09:18:18 +02:00
parent cc6fb6e178
commit e0259b5752
2 changed files with 2 additions and 4 deletions

View File

@ -2320,8 +2320,7 @@ virSecurityDACGenLabel(virSecurityManager *mgr,
if (seclabel->imagelabel) { if (seclabel->imagelabel) {
virReportError(VIR_ERR_INTERNAL_ERROR, "%s", virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
_("security image label already " _("security image label already defined for VM"));
"defined for VM"));
return rc; return rc;
} }

View File

@ -112,8 +112,7 @@ vah_usage(void)
" -F | --append-file <file> append file to an existing profile\n" " -F | --append-file <file> append file to an existing profile\n"
"\n"), progname); "\n"), progname);
puts(_("This command is intended to be used by libvirtd " puts(_("This command is intended to be used by libvirtd and not used directly.\n"));
"and not used directly.\n"));
return; return;
} }