ima: Fix line continuation format
authorJoe Perches <joe@perches.com>
Thu, 16 Nov 2017 15:27:29 +0000 (07:27 -0800)
committerMimi Zohar <zohar@linux.vnet.ibm.com>
Mon, 18 Dec 2017 14:43:47 +0000 (09:43 -0500)
Line continuations with excess spacing causes unexpected output.

Based on commit 6f76b6fcaa60 ("CodingStyle: Document the exception of
not splitting user-visible strings, for grepping") recommendation.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Mimi Zohar <zohar@linux.vnet.ibm.com>
security/integrity/ima/ima_template.c

index 7412d0291ab9e4f7d284560a457dccd7188f3f50..30db39b2380432b1770f0f03fd84a75d2dfb9cb1 100644 (file)
@@ -377,8 +377,7 @@ int ima_restore_measurement_list(loff_t size, void *buf)
                        break;
 
                if (hdr[HDR_TEMPLATE_NAME].len >= MAX_TEMPLATE_NAME_LEN) {
-                       pr_err("attempting to restore a template name \
-                               that is too long\n");
+                       pr_err("attempting to restore a template name that is too long\n");
                        ret = -EINVAL;
                        break;
                }
@@ -389,8 +388,8 @@ int ima_restore_measurement_list(loff_t size, void *buf)
                template_name[hdr[HDR_TEMPLATE_NAME].len] = 0;
 
                if (strcmp(template_name, "ima") == 0) {
-                       pr_err("attempting to restore an unsupported \
-                               template \"%s\" failed\n", template_name);
+                       pr_err("attempting to restore an unsupported template \"%s\" failed\n",
+                              template_name);
                        ret = -EINVAL;
                        break;
                }
@@ -410,8 +409,8 @@ int ima_restore_measurement_list(loff_t size, void *buf)
                                                &(template_desc->fields),
                                                &(template_desc->num_fields));
                if (ret < 0) {
-                       pr_err("attempting to restore the template fmt \"%s\" \
-                               failed\n", template_desc->fmt);
+                       pr_err("attempting to restore the template fmt \"%s\" failed\n",
+                              template_desc->fmt);
                        ret = -EINVAL;
                        break;
                }