From: Michal Privoznik Date: Fri, 25 Aug 2023 07:18:18 +0000 (+0200) Subject: security: Move error messages onto a single line X-Git-Tag: v9.8.0-rc1~249 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e0259b5752f3e6d5742633c912d6b627d4ddf67b;p=thirdparty%2Flibvirt.git 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 Reviewed-by: Pavel Hrdina --- diff --git a/src/security/security_dac.c b/src/security/security_dac.c index 20e0998fbc..4667328b26 100644 --- a/src/security/security_dac.c +++ b/src/security/security_dac.c @@ -2320,8 +2320,7 @@ virSecurityDACGenLabel(virSecurityManager *mgr, if (seclabel->imagelabel) { virReportError(VIR_ERR_INTERNAL_ERROR, "%s", - _("security image label already " - "defined for VM")); + _("security image label already defined for VM")); return rc; } diff --git a/src/security/virt-aa-helper.c b/src/security/virt-aa-helper.c index 91fa57ddfb..c50629d096 100644 --- a/src/security/virt-aa-helper.c +++ b/src/security/virt-aa-helper.c @@ -112,8 +112,7 @@ vah_usage(void) " -F | --append-file append file to an existing profile\n" "\n"), progname); - puts(_("This command is intended to be used by libvirtd " - "and not used directly.\n")); + puts(_("This command is intended to be used by libvirtd and not used directly.\n")); return; }