]> git.ipfire.org Git - thirdparty/mdadm.git/commitdiff
fname_as_uuid: print uuids msb first
authorDan Williams <dan.j.williams@intel.com>
Thu, 2 Oct 2008 01:50:43 +0000 (18:50 -0700)
committerDan Williams <dan.j.williams@intel.com>
Wed, 15 Oct 2008 21:26:51 +0000 (14:26 -0700)
The sha1 routines store the uuids in little endian byte-order, so always
print from msb to lsb. This allows imsm containers to be assembled with
-As.

Signed-off-by: Dan Williams <dan.j.williams@intel.com>
util.c

diff --git a/util.c b/util.c
index 653796f10474803c70ede50b984d7db20b36cbaa..4c0494236dfd6a97bf0d838d083346cf95c467ae 100644 (file)
--- a/util.c
+++ b/util.c
@@ -271,17 +271,21 @@ void copy_uuid(void *a, int b[4], int swapuuid)
 
 char *fname_from_uuid(struct supertype *st, struct mdinfo *info, char *buf, char sep)
 {
 
 char *fname_from_uuid(struct supertype *st, struct mdinfo *info, char *buf, char sep)
 {
-       int i;
+       int i, j;
+       int id;
        char uuid[16];
        char *c = buf;
        strcpy(c, "UUID-");
        c += strlen(c);
        copy_uuid(uuid, info->uuid, st->ss->swapuuid);
        char uuid[16];
        char *c = buf;
        strcpy(c, "UUID-");
        c += strlen(c);
        copy_uuid(uuid, info->uuid, st->ss->swapuuid);
-       for (i=0; i<16; i++) {
-               if (i && (i&3)==0)
+       for (i = 0; i < 4; i++) {
+               id = uuid[i];
+               if (i)
                        *c++ = sep;
                        *c++ = sep;
-               sprintf(c,"%02x", (unsigned char)uuid[i]);
-               c+= 2;
+               for (j = 3; j >= 0; j--) {
+                       sprintf(c,"%02x", (unsigned char) uuid[j+4*i]);
+                       c+= 2;
+               }
        }
        return buf;
 }
        }
        return buf;
 }