summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/windows_links/common.inc
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/file/windows_links/common.inc')
-rw-r--r--ext/standard/tests/file/windows_links/common.inc18
1 files changed, 9 insertions, 9 deletions
diff --git a/ext/standard/tests/file/windows_links/common.inc b/ext/standard/tests/file/windows_links/common.inc
index caa3758d44..b4a09e00c2 100644
--- a/ext/standard/tests/file/windows_links/common.inc
+++ b/ext/standard/tests/file/windows_links/common.inc
@@ -1,23 +1,23 @@
<?php
function get_sysroot() {
- // usually c:\\windows, but not always
- return exec('echo %SYSTEMROOT%');
+ // usually c:\\windows, but not always
+ return exec('echo %SYSTEMROOT%');
}
function get_junction(){
- // junction.exe isn't included with Windows
- // its a sysinternals tool for working with filesystem links
- // see: http://technet.microsoft.com/en-us/sysinternals/bb896768
+ // junction.exe isn't included with Windows
+ // its a sysinternals tool for working with filesystem links
+ // see: http://technet.microsoft.com/en-us/sysinternals/bb896768
- // install somewhere that is on %path% or added to %path%
- return "junction.exe";
+ // install somewhere that is on %path% or added to %path%
+ return "junction.exe";
}
function get_mountvol() {
- $sysroot = get_sysroot();
+ $sysroot = get_sysroot();
- return "$sysroot\\System32\\mountvol.exe";
+ return "$sysroot\\System32\\mountvol.exe";
}
function skipIfSeCreateSymbolicLinkPrivilegeIsDisabled(string $filename) {