fde: set ro.crypto.type to block

Since we set ro.crypto.type to "file" for FBE, we should also set
this prop for FDE.

Change-Id: Id3a581da5d4b58c41c2c361593ad7266898a6f54
diff --git a/partitionmanager.cpp b/partitionmanager.cpp
index d85ae2a..f263b5f 100755
--- a/partitionmanager.cpp
+++ b/partitionmanager.cpp
@@ -1865,6 +1865,7 @@
 	property_get("ro.crypto.state", crypto_state, "error");
 	if (strcmp(crypto_state, "error") == 0) {
 		property_set("ro.crypto.state", "encrypted");
+		property_set("ro.crypto.type", "block");
 		// Sleep for a bit so that services can start if needed
 		sleep(1);
 	}