]> wimlib.net Git - wimlib/commitdiff
reparse.c: Fix volume_junction_prefix
authorEric Biggers <ebiggers3@gmail.com>
Thu, 15 May 2014 17:53:57 +0000 (12:53 -0500)
committerEric Biggers <ebiggers3@gmail.com>
Thu, 15 May 2014 17:53:57 +0000 (12:53 -0500)
This uses an NT namespace path, so it's \??\ prefix not \\?\.

src/reparse.c

index 913ea5ce095de34eafb0c457086acaae07e36ce5..2bc421d2a57b424f3e8bea4d82295523132d0355 100644 (file)
@@ -68,7 +68,7 @@ struct reparse_buffer_disk {
 
 static const utf16lechar volume_junction_prefix[11] = {
        cpu_to_le16('\\'),
 
 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'),
        cpu_to_le16('?'),
        cpu_to_le16('\\'),
        cpu_to_le16('V'),