summaryrefslogtreecommitdiff
path: root/TSRM/tsrm_virtual_cwd.h
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2010-09-13 09:08:42 +0000
committerPierre Joye <pajoye@php.net>2010-09-13 09:08:42 +0000
commitba5b4afc3268ebd134c02a6895d6649c637151ba (patch)
tree9d8532ffe3396375d780a608e70b0f244bc86afc /TSRM/tsrm_virtual_cwd.h
parenta53f43d7b5f38252d2cf8c2ff9ade00d19cd8896 (diff)
downloadphp-git-ba5b4afc3268ebd134c02a6895d6649c637151ba.tar.gz
- WS
Diffstat (limited to 'TSRM/tsrm_virtual_cwd.h')
-rw-r--r--TSRM/tsrm_virtual_cwd.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/TSRM/tsrm_virtual_cwd.h b/TSRM/tsrm_virtual_cwd.h
index b26d2234af..19953c8956 100644
--- a/TSRM/tsrm_virtual_cwd.h
+++ b/TSRM/tsrm_virtual_cwd.h
@@ -108,7 +108,7 @@ typedef unsigned short mode_t;
#define COPY_WHEN_ABSOLUTE(path) 0
#endif
-#ifndef IS_ABSOLUTE_PATH
+#ifndef IS_ABSOLUTE_PATH
#define IS_ABSOLUTE_PATH(path, len) \
(IS_SLASH(path[0]))
#endif
@@ -194,7 +194,7 @@ CWD_API int virtual_chmod(const char *filename, mode_t mode TSRMLS_DC);
CWD_API int virtual_chown(const char *filename, uid_t owner, gid_t group, int link TSRMLS_DC);
#endif
-/* One of the following constants must be used as the last argument
+/* One of the following constants must be used as the last argument
in virtual_file_ex() call. */
#define CWD_EXPAND 0 /* expand "." and ".." but dont resolve symlinks */
@@ -222,7 +222,7 @@ typedef struct _realpath_cache_bucket {
unsigned char is_wvalid;
unsigned char is_writable;
#endif
- struct _realpath_cache_bucket *next;
+ struct _realpath_cache_bucket *next;
} realpath_cache_bucket;
typedef struct _virtual_cwd_globals {
@@ -250,7 +250,7 @@ CWD_API realpath_cache_bucket** realpath_cache_get_buckets(TSRMLS_D);
/* The actual macros to be used in programs using TSRM
* If the program defines VIRTUAL_DIR it will use the
- * virtual_* functions
+ * virtual_* functions
*/
#ifdef VIRTUAL_DIR