summaryrefslogtreecommitdiff
path: root/zen/symlink_target.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/symlink_target.h')
-rw-r--r--zen/symlink_target.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/zen/symlink_target.h b/zen/symlink_target.h
index c4e166e8..a1f48884 100644
--- a/zen/symlink_target.h
+++ b/zen/symlink_target.h
@@ -84,7 +84,7 @@ Zstring getSymlinkRawTargetString_impl(const Zstring& linkPath) //throw FileErro
{
using namespace zen;
#ifdef ZEN_WIN
- //FSCTL_GET_REPARSE_POINT: http://msdn.microsoft.com/en-us/library/aa364571(VS.85).aspx
+ //FSCTL_GET_REPARSE_POINT: https://msdn.microsoft.com/en-us/library/aa364571
//reading certain symlinks/junctions requires admin rights!
try
@@ -213,9 +213,9 @@ Zstring getResolvedSymlinkPath(const Zstring& linkPath) { return getResolvedSyml
#ifdef ZEN_WIN
/*
Reparse Point Tags
- http://msdn.microsoft.com/en-us/library/windows/desktop/aa365511(v=vs.85).aspx
+ https://msdn.microsoft.com/en-us/library/windows/desktop/aa365511
WIN32_FIND_DATA structure
- http://msdn.microsoft.com/en-us/library/windows/desktop/aa365740(v=vs.85).aspx
+ https://msdn.microsoft.com/en-us/library/windows/desktop/aa365740
The only surrogate reparse points are;
IO_REPARSE_TAG_MOUNT_POINT
bgstack15