module: Remove double spaces in module verification taint message
authorMarcel Holtmann <marcel@holtmann.org>
Fri, 6 Feb 2015 04:39:57 +0000 (15:09 +1030)
committerRusty Russell <rusty@rustcorp.com.au>
Fri, 6 Feb 2015 05:01:41 +0000 (15:31 +1030)
The warning message when loading modules with a wrong signature has
two spaces in it:

"module verification failed: signature and/or  required key missing"

Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
kernel/module.c

index 441ed3fc9c89cc2146a2ea3e4a59bbcaccd67805..2461370813b31e8a02a103af27579ca69357245b 100644 (file)
@@ -3265,7 +3265,7 @@ static int load_module(struct load_info *info, const char __user *uargs,
        mod->sig_ok = info->sig_ok;
        if (!mod->sig_ok) {
                pr_notice_once("%s: module verification failed: signature "
-                              "and/or  required key missing - tainting "
+                              "and/or required key missing - tainting "
                               "kernel\n", mod->name);
                add_taint_module(mod, TAINT_UNSIGNED_MODULE, LOCKDEP_STILL_OK);
        }
This page took 0.026099 seconds and 5 git commands to generate.