]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
crypto: testmgr - add missing spaces to drbg error strings
authorJarod Wilson <jarod@redhat.com>
Tue, 29 Jul 2014 19:47:56 +0000 (15:47 -0400)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 1 Aug 2014 14:36:13 +0000 (22:36 +0800)
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>
crypto/testmgr.c

index 81818b9a1b832526e1f94ec8b36456ea3c5b9339..ac2b63105afcd018593eae3db8e65faaa593ea07 100644 (file)
@@ -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;
        }