Skip to content

Commit

Permalink
Correct grammer/typos in dprintks
Browse files Browse the repository at this point in the history
cleanup:  Fix grammer/typos to use "too" instead of "to"

Signed-off-by: Kevin Coffman <kwc@citi.umich.edu>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
  • Loading branch information
Kevin Coffman authored and J. Bruce Fields committed Apr 23, 2008
1 parent 830bb59 commit 3d4a688
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions net/sunrpc/auth_gss/gss_krb5_crypto.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ krb5_encrypt(
goto out;

if (crypto_blkcipher_ivsize(tfm) > 16) {
dprintk("RPC: gss_k5encrypt: tfm iv size to large %d\n",
crypto_blkcipher_ivsize(tfm));
dprintk("RPC: gss_k5encrypt: tfm iv size too large %d\n",
crypto_blkcipher_ivsize(tfm));
goto out;
}

Expand Down Expand Up @@ -102,7 +102,7 @@ krb5_decrypt(
goto out;

if (crypto_blkcipher_ivsize(tfm) > 16) {
dprintk("RPC: gss_k5decrypt: tfm iv size to large %d\n",
dprintk("RPC: gss_k5decrypt: tfm iv size too large %d\n",
crypto_blkcipher_ivsize(tfm));
goto out;
}
Expand Down

0 comments on commit 3d4a688

Please sign in to comment.