Fix AOSP decrypt when TouchWiz code is present
diff --git a/partition.cpp b/partition.cpp
index 7cf0ab3..f81748d 100644
--- a/partition.cpp
+++ b/partition.cpp
@@ -902,7 +902,9 @@
 			LOGINFO("Successfully mounted ecryptfs for '%s'\n", Mount_Point.c_str());
 			Is_Decrypted = true;
 		}
-	} else {
+	} else if (Mount_Point == EXPAND(TW_EXTERNAL_STORAGE_PATH)) {
+		if (Is_Decrypted)
+			LOGINFO("Mounting external storage, '%s' is not encrypted\n", Mount_Point.c_str());
 		Is_Decrypted = false;
 	}
 #endif