From 42878445d73b19096e068e50a0ab86c9fa047c63 Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Mon, 13 Feb 2006 06:29:30 +0100 Subject: [PATCH] cramfs detection for bigendian Patch from Olaf Hering . --- extras/volume_id/libvolume_id/cramfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/volume_id/libvolume_id/cramfs.c b/extras/volume_id/libvolume_id/cramfs.c index 0ad5886b3..bf79407d9 100644 --- a/extras/volume_id/libvolume_id/cramfs.c +++ b/extras/volume_id/libvolume_id/cramfs.c @@ -52,7 +52,7 @@ int volume_id_probe_cramfs(struct volume_id *id, uint64_t off) if (cs == NULL) return -1; - if (memcmp(cs->magic, "\x45\x3d\xcd\x28", 4) == 0) { + if (memcmp(cs->magic, "\x45\x3d\xcd\x28", 4) == 0 || memcmp(cs->magic, "\x28\xcd\x3d\x45", 4) == 0) { volume_id_set_label_raw(id, cs->name, 16); volume_id_set_label_string(id, cs->name, 16); -- 2.30.2