aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2015-02-05 23:39:57 -0500
committerRusty Russell <rusty@rustcorp.com.au>2015-02-06 00:01:41 -0500
commitab92ebbb8e10d402f4fe73c6b3d85be72614f1fa (patch)
treea76796777921c2a6799d7e042fb53e19546edc1c /kernel
parentde96d79f343321d26ff920af25fcefe6895ca544 (diff)
module: Remove double spaces in module verification taint message
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>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/module.c b/kernel/module.c
index 441ed3fc9c89..2461370813b3 100644
--- a/kernel/module.c
+++ b/kernel/module.c
@@ -3265,7 +3265,7 @@ static int load_module(struct load_info *info, const char __user *uargs,
3265 mod->sig_ok = info->sig_ok; 3265 mod->sig_ok = info->sig_ok;
3266 if (!mod->sig_ok) { 3266 if (!mod->sig_ok) {
3267 pr_notice_once("%s: module verification failed: signature " 3267 pr_notice_once("%s: module verification failed: signature "
3268 "and/or required key missing - tainting " 3268 "and/or required key missing - tainting "
3269 "kernel\n", mod->name); 3269 "kernel\n", mod->name);
3270 add_taint_module(mod, TAINT_UNSIGNED_MODULE, LOCKDEP_STILL_OK); 3270 add_taint_module(mod, TAINT_UNSIGNED_MODULE, LOCKDEP_STILL_OK);
3271 } 3271 }