X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Fsymlink.c;h=ca2e422fca2176e49f6f6b1054bc0667736bcce0;hb=8ca5d211433e3edef4366f984e2bb13a5a425c6c;hp=aa54e6bd85ae18cf2230943d1f252abe3a0a50fc;hpb=21a83b1b20f5ae138bc4bb9bdedd80a2a2d92c0a;p=wimlib diff --git a/src/symlink.c b/src/symlink.c index aa54e6bd..ca2e422f 100644 --- a/src/symlink.c +++ b/src/symlink.c @@ -1,3 +1,9 @@ +/* + * symlink.c + * + * Code to read and set symbolic links in WIM files. + */ + /* * Copyright (C) 2012 Eric Biggers * @@ -99,7 +105,12 @@ static ssize_t get_symlink_name(const u8 *resource, size_t resource_len, translated_target += 4; link_target_len -= 4; /* There's a drive letter, so just leave the backslashes since - * it won't go anyhwere on UNIX anyway... */ + * it won't go anyhwere on UNIX anyway... + * + * XXX + * NTFS-3g tries to re-map these links to actually point to + * something, so maybe we could do something like that here + * XXX*/ } else { for (size_t i = 0; i < link_target_len; i++) if (translated_target[i] == '\\')