From 6757a5a253dcdd4023338a430304e088af10bc68 Mon Sep 17 00:00:00 2001 From: Zygo Blaxell Date: Fri, 14 May 2010 13:51:41 -0400 Subject: [PATCH] dm6: fix inode naming for little-endian systems --- dm6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dm6 b/dm6 index 1f76cae..b8cd25f 100755 --- a/dm6 +++ b/dm6 @@ -106,7 +106,7 @@ sub prepare_parents { sub name_quad { my ($int64) = @_; - my $packed = pack('Q', $int64); + my $packed = pack('Q>', $int64); $packed =~ s/^\0+//os; my $base64_packed = encode_base64($packed, ''); # Don't strip off the trailing padding since it makes the string -- 2.30.2