Ignore "fstype=crypt" for mount.crypt.

Index: libpam-mount-2.14~gitd1d6f871/src/mtcrypt.c
===================================================================
--- libpam-mount-2.14~gitd1d6f871.orig/src/mtcrypt.c	2012-03-30 03:51:13.000000000 +0200
+++ libpam-mount-2.14~gitd1d6f871/src/mtcrypt.c	2012-03-31 14:22:29.754041335 +0200
@@ -119,8 +119,14 @@ static void mtcr_parse_suboptions(const
 			else if (ret < EHD_SECURITY_UNSPEC)
 				fprintf(stderr, "Hash \"%s\" is considered "
 				        "insecure.\n", value);
-		} else if (strcmp(key, "fstype") == 0)
-			mo->fstype = value;
+		} else if (strcmp(key, "fstype") == 0) {
+                    if (strcmp(value, "crypt") == 0) {
+                        fprintf(stderr, "Option \"fstype=crypt\" to mount.crypt ignored.\n");
+                    }
+                    else {
+                        mo->fstype = value;
+                    }
+                }
 		else if (strcmp(key, "keyfile") == 0)
 			mo->fsk_file = value;
 		else if (strcmp(key, "keysize") == 0)
