summaryrefslogtreecommitdiff
path: root/TSRM
diff options
context:
space:
mode:
authorAnantha Kesari H Y <hyanantha@php.net>2005-07-07 06:52:44 +0000
committerAnantha Kesari H Y <hyanantha@php.net>2005-07-07 06:52:44 +0000
commite61dfb0213ff0b52898238c31994cb8c72e77339 (patch)
tree509ed53b52db5e92bbea8a90005584f697dffc69 /TSRM
parent8de33674538a324290afb23fddccfb581726a1a2 (diff)
downloadphp-git-e61dfb0213ff0b52898238c31994cb8c72e77339.tar.gz
COPY_WHEN_ABSOLUTE is not needed for NetWare.
-- Kamesh
Diffstat (limited to 'TSRM')
-rw-r--r--TSRM/tsrm_virtual_cwd.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/TSRM/tsrm_virtual_cwd.h b/TSRM/tsrm_virtual_cwd.h
index 1a61ea2a91..7e56c029ef 100644
--- a/TSRM/tsrm_virtual_cwd.h
+++ b/TSRM/tsrm_virtual_cwd.h
@@ -74,8 +74,6 @@ typedef unsigned short mode_t;
#define DEFAULT_DIR_SEPARATOR ';'
#define IS_SLASH(c) ((c) == '/' || (c) == '\\')
#define IS_SLASH_P(c) IS_SLASH(*(c))
-#define COPY_WHEN_ABSOLUTE(path) \
- (strchr(path, ':') - path + 1) /* Take the volume name which ends with a colon */
/* Colon indicates volume name, either first character should be forward slash or backward slash */
#define IS_ABSOLUTE_PATH(path, len) \
((strchr(path, ':') != NULL) || ((len >= 1) && ((path[0] == '/') || (path[0] == '\\'))))