ocfs2: fix init of uuid_net_key

ocfs2_initialize_super() should be copying from the beginning of the uuid.

Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>

+1 -1
+1 -1
fs/ocfs2/super.c
··· 1417 1417 goto bail; 1418 1418 } 1419 1419 1420 - memcpy(&uuid_net_key, &osb->uuid[i], sizeof(osb->net_key)); 1420 + memcpy(&uuid_net_key, osb->uuid, sizeof(uuid_net_key)); 1421 1421 osb->net_key = le32_to_cpu(uuid_net_key); 1422 1422 1423 1423 strncpy(osb->vol_label, di->id2.i_super.s_label, 63);