summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorJarod Wilson <jarod@redhat.com>2014-07-29 15:47:56 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2014-08-01 22:36:13 +0800
commit400b3fa78b85fd56f9d692e40e54ff6be40f1b45 (patch)
treeb2463d6871af56f214747a6eacfc1cc495919423 /crypto
parent4523377187e9ebdb98977ab7340d773ce6ede2f7 (diff)
downloadlinux-crypto-400b3fa78b85fd56f9d692e40e54ff6be40f1b45.tar.gz
linux-crypto-400b3fa78b85fd56f9d692e40e54ff6be40f1b45.zip
crypto: testmgr - add missing spaces to drbg error strings
There are a few missing spaces in the error text strings for drbg_cavs_test, trivial fix. CC: "David S. Miller" <davem@davemloft.net> CC: linux-crypto@vger.kernel.org Signed-off-by: Jarod Wilson <jarod@redhat.com> Acked-by: Stephan Mueller <smueller@chronox.de> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/testmgr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/testmgr.c b/crypto/testmgr.c
index 81818b9a..ac2b6310 100644
--- a/crypto/testmgr.c
+++ b/crypto/testmgr.c
@@ -1778,7 +1778,7 @@ static int drbg_cavs_test(struct drbg_testvec *test, int pr,
drng = crypto_alloc_rng(driver, type, mask);
if (IS_ERR(drng)) {
- printk(KERN_ERR "alg: drbg: could not allocate DRNG handle for"
+ printk(KERN_ERR "alg: drbg: could not allocate DRNG handle for "
"%s\n", driver);
kzfree(buf);
return -ENOMEM;
@@ -1803,7 +1803,7 @@ static int drbg_cavs_test(struct drbg_testvec *test, int pr,
buf, test->expectedlen, &addtl);
}
if (ret <= 0) {
- printk(KERN_ERR "alg: drbg: could not obtain random data for"
+ printk(KERN_ERR "alg: drbg: could not obtain random data for "
"driver %s\n", driver);
goto outbuf;
}
@@ -1818,7 +1818,7 @@ static int drbg_cavs_test(struct drbg_testvec *test, int pr,
buf, test->expectedlen, &addtl);
}
if (ret <= 0) {
- printk(KERN_ERR "alg: drbg: could not obtain random data for"
+ printk(KERN_ERR "alg: drbg: could not obtain random data for "
"driver %s\n", driver);
goto outbuf;
}