aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md/dm-crypt.c
diff options
context:
space:
mode:
authorDirk Hohndel <hohndel@infradead.org>2009-09-28 21:43:57 -0400
committerJiri Kosina <jkosina@suse.cz>2009-11-09 03:40:54 -0500
commit06fe9fb4182177fb046e6d934f80254dd90956ea (patch)
treeae394e643ae90641a6358296b9f9a5c13e79c189 /drivers/md/dm-crypt.c
parent5b73a41c02002ed2ee6b805d0c3691fb9ab9dc4f (diff)
tree-wide: fix a very frequent spelling mistake
something-bility is spelled as something-blity so a grep for 'blit' would find these lines this is so trivial that I didn't split it by subsystem / copy additional maintainers - all changes are to comments The only purpose is to get fewer false positives when grepping around the kernel sources. Signed-off-by: Dirk Hohndel <hohndel@infradead.org> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/md/dm-crypt.c')
-rw-r--r--drivers/md/dm-crypt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-crypt.c b/drivers/md/dm-crypt.c
index ed1038164019..e412980763bd 100644
--- a/drivers/md/dm-crypt.c
+++ b/drivers/md/dm-crypt.c
@@ -988,7 +988,7 @@ static int crypt_ctr(struct dm_target *ti, unsigned int argc, char **argv)
988 goto bad_cipher; 988 goto bad_cipher;
989 } 989 }
990 990
991 /* Compatiblity mode for old dm-crypt cipher strings */ 991 /* Compatibility mode for old dm-crypt cipher strings */
992 if (!chainmode || (strcmp(chainmode, "plain") == 0 && !ivmode)) { 992 if (!chainmode || (strcmp(chainmode, "plain") == 0 && !ivmode)) {
993 chainmode = "cbc"; 993 chainmode = "cbc";
994 ivmode = "plain"; 994 ivmode = "plain";