From cd31971d325d4757dbd72064939ab9d43acd5e96 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Thu, 15 May 2014 12:53:57 -0500 Subject: [PATCH] reparse.c: Fix volume_junction_prefix This uses an NT namespace path, so it's \??\ prefix not \\?\. --- src/reparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reparse.c b/src/reparse.c index 913ea5ce..2bc421d2 100644 --- a/src/reparse.c +++ b/src/reparse.c @@ -68,7 +68,7 @@ struct reparse_buffer_disk { static const utf16lechar volume_junction_prefix[11] = { cpu_to_le16('\\'), - cpu_to_le16('\\'), + cpu_to_le16('?'), cpu_to_le16('?'), cpu_to_le16('\\'), cpu_to_le16('V'), -- 2.43.0