summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2007-08-10 08:58:44 +0000
committerAntony Dovgal <tony2001@php.net>2007-08-10 08:58:44 +0000
commit7fbcb745ab203f93e1d736a28f13b8310e58f4d3 (patch)
tree3a1a4c625b6221a0eb746237a941cae786935f3f
parent9420637921320ad35396b8c391f62ece52874f9f (diff)
downloadphp-git-7fbcb745ab203f93e1d736a28f13b8310e58f4d3.tar.gz
nuke the dot
-rw-r--r--ext/standard/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/file.c b/ext/standard/file.c
index ab7ac00e50..d9fcf06f91 100644
--- a/ext/standard/file.c
+++ b/ext/standard/file.c
@@ -1766,7 +1766,7 @@ PHPAPI int php_copy_file_ex(char *src, char *dest, int src_chk TSRMLS_DC)
goto safe_to_copy;
}
if (S_ISDIR(src_s.sb.st_mode)) {
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "The first argument to copy() function cannot be a directory.");
+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "The first argument to copy() function cannot be a directory");
return FAILURE;
}
if (!src_s.sb.st_ino || !dest_s.sb.st_ino) {