]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
security: Move error messages onto a single line
authorMichal Privoznik <mprivozn@redhat.com>
Fri, 25 Aug 2023 07:18:18 +0000 (09:18 +0200)
committerMichal Privoznik <mprivozn@redhat.com>
Mon, 4 Sep 2023 07:35:36 +0000 (09:35 +0200)
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>
src/security/security_dac.c
src/security/virt-aa-helper.c

index 20e0998fbc0456ed753adb1ae28cf644ef98e6c1..4667328b26fc62313605414e99bffc78fd7c767e 100644 (file)
@@ -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;
     }
 
index 91fa57ddfb63b9c2676b0a524ff7ce261c775fb1..c50629d09634e5ae1acc284c327584a09dad33f9 100644 (file)
@@ -112,8 +112,7 @@ vah_usage(void)
             "    -F | --append-file <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;
 }