summaryrefslogtreecommitdiff
path: root/ext/standard/filestat.c
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2002-07-08 12:52:22 +0000
committerDerick Rethans <derick@php.net>2002-07-08 12:52:22 +0000
commit728f2de4420f75bd3ac1813d2c227fc7f4a0a81d (patch)
tree4f9c64153fff9698be0bdbc3eb45fc9714037db7 /ext/standard/filestat.c
parentbd356fd0b99eb05d19b1dd4a616df90097baca88 (diff)
downloadphp-git-728f2de4420f75bd3ac1813d2c227fc7f4a0a81d.tar.gz
Unify error messages
Diffstat (limited to 'ext/standard/filestat.c')
-rw-r--r--ext/standard/filestat.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/ext/standard/filestat.c b/ext/standard/filestat.c
index b9d060e3ef..382847344a 100644
--- a/ext/standard/filestat.c
+++ b/ext/standard/filestat.c
@@ -198,7 +198,7 @@ PHP_FUNCTION(disk_total_space)
}
}
else {
- php_error(E_WARNING, "Unable to load kernel32.dll");
+ php_error(E_WARNING, "%s(): Unable to load kernel32.dll", get_active_function_name(TSRMLS_C));
RETURN_FALSE;
}
@@ -301,7 +301,7 @@ PHP_FUNCTION(disk_free_space)
}
}
else {
- php_error(E_WARNING, "Unable to load kernel32.dll");
+ php_error(E_WARNING, "%s(): Unable to load kernel32.dll", get_active_function_name(TSRMLS_C));
RETURN_FALSE;
}
@@ -348,7 +348,7 @@ PHP_FUNCTION(chgrp)
if (Z_TYPE_PP(group) == IS_STRING) {
gr = getgrnam(Z_STRVAL_PP(group));
if (!gr) {
- php_error(E_WARNING, "unable to find gid for %s",
+ php_error(E_WARNING, "%s(): Unable to find gid for %s", get_active_function_name(TSRMLS_C),
Z_STRVAL_PP(group));
RETURN_FALSE;
}
@@ -369,7 +369,7 @@ PHP_FUNCTION(chgrp)
ret = VCWD_CHOWN(Z_STRVAL_PP(filename), -1, gid);
if (ret == -1) {
- php_error(E_WARNING, "chgrp failed: %s", strerror(errno));
+ php_error(E_WARNING, "%s(): %s", get_active_function_name(TSRMLS_C), strerror(errno));
RETURN_FALSE;
}
RETURN_TRUE;
@@ -396,7 +396,7 @@ PHP_FUNCTION(chown)
if (Z_TYPE_PP(user) == IS_STRING) {
pw = getpwnam(Z_STRVAL_PP(user));
if (!pw) {
- php_error(E_WARNING, "unable to find uid for %s",
+ php_error(E_WARNING, "%s(): Unable to find uid for %s", get_active_function_name(TSRMLS_C),
Z_STRVAL_PP(user));
RETURN_FALSE;
}
@@ -417,7 +417,7 @@ PHP_FUNCTION(chown)
ret = VCWD_CHOWN(Z_STRVAL_PP(filename), uid, -1);
if (ret == -1) {
- php_error(E_WARNING, "chown failed: %s", strerror(errno));
+ php_error(E_WARNING, "%s(): %s", get_active_function_name(TSRMLS_C), strerror(errno));
RETURN_FALSE;
}
#endif
@@ -458,7 +458,7 @@ PHP_FUNCTION(chmod)
ret = VCWD_CHMOD(Z_STRVAL_PP(filename), imode);
if (ret == -1) {
- php_error(E_WARNING, "chmod failed: %s", strerror(errno));
+ php_error(E_WARNING, "%s(): %s", get_active_function_name(TSRMLS_C), strerror(errno));
RETURN_FALSE;
}
RETURN_TRUE;
@@ -512,7 +512,7 @@ PHP_FUNCTION(touch)
if (ret == -1) {
file = VCWD_FOPEN(Z_STRVAL_PP(filename), "w");
if (file == NULL) {
- php_error(E_WARNING, "unable to create file %s because %s", Z_STRVAL_PP(filename), strerror(errno));
+ php_error(E_WARNING, "%s(): Unable to create file %s because %s", get_active_function_name(TSRMLS_C), Z_STRVAL_PP(filename), strerror(errno));
RETURN_FALSE;
}
fclose(file);
@@ -520,7 +520,7 @@ PHP_FUNCTION(touch)
ret = VCWD_UTIME(Z_STRVAL_PP(filename), newtime);
if (ret == -1) {
- php_error(E_WARNING, "utime failed: %s", strerror(errno));
+ php_error(E_WARNING, "%s(): Utime failed: %s", get_active_function_name(TSRMLS_C), strerror(errno));
RETURN_FALSE;
}
RETURN_TRUE;
@@ -587,7 +587,7 @@ static void php_stat(const char *filename, php_stat_len filename_length, int typ
#endif
if (VCWD_STAT(BG(CurrentStatFile), &BG(sb)) == -1) {
if (!IS_LINK_OPERATION(type) && (!IS_EXISTS_CHECK(type) || errno != ENOENT)) { /* fileexists() test must print no error */
- php_error(E_WARNING, "stat failed for %s (errno=%d - %s)", BG(CurrentStatFile), errno, strerror(errno));
+ php_error(E_WARNING, "%s(): Stat failed for %s (errno=%d - %s)", get_active_function_name(TSRMLS_C), BG(CurrentStatFile), errno, strerror(errno));
}
efree(BG(CurrentStatFile));
BG(CurrentStatFile) = NULL;
@@ -602,7 +602,7 @@ static void php_stat(const char *filename, php_stat_len filename_length, int typ
/* do lstat if the buffer is empty */
if (VCWD_LSTAT(filename, &BG(lsb)) == -1) {
if (!IS_EXISTS_CHECK(type) || errno != ENOENT) { /* fileexists() test must print no error */
- php_error(E_WARNING, "lstat failed for %s (errno=%d - %s)", BG(CurrentStatFile), errno, strerror(errno));
+ php_error(E_WARNING, "%s(): Lstat failed for %s (errno=%d - %s)", get_active_function_name(TSRMLS_C), BG(CurrentStatFile), errno, strerror(errno));
}
RETURN_FALSE;
}
@@ -673,7 +673,7 @@ static void php_stat(const char *filename, php_stat_len filename_length, int typ
case S_IFSOCK: RETURN_STRING("socket", 1);
#endif
}
- php_error(E_WARNING, "Unknown file type (%d)", BG(sb).st_mode&S_IFMT);
+ php_error(E_WARNING, "%s(): Unknown file type (%d)", get_active_function_name(TSRMLS_C), BG(sb).st_mode&S_IFMT);
RETURN_STRING("unknown", 1);
case FS_IS_W:
if (getuid()==0) {
@@ -770,7 +770,7 @@ static void php_stat(const char *filename, php_stat_len filename_length, int typ
return;
}
- php_error(E_WARNING, "didn't understand stat call");
+ php_error(E_WARNING, "%s(): Didn't understand stat call", get_active_function_name(TSRMLS_C));
RETURN_FALSE;
}
/* }}} */