From: Eric Biggers Date: Thu, 15 May 2014 17:53:57 +0000 (-0500) Subject: reparse.c: Fix volume_junction_prefix X-Git-Tag: v1.7.0~142 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=cd31971d325d4757dbd72064939ab9d43acd5e96 reparse.c: Fix volume_junction_prefix This uses an NT namespace path, so it's \??\ prefix not \\?\. --- 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'),