From 89635eb158b68e8daf77e2f49aa6fa233f112cd0 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Thu, 6 Jul 2006 23:13:18 +0000 Subject: [PATCH] E_ERROR > E_RECOVERABLE_ERROR --- ext/dba/dba.c | 2 +- ext/dba/libinifile/inifile.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/dba/dba.c b/ext/dba/dba.c index 6a603a1f7eb..38b17229f0c 100644 --- a/ext/dba/dba.c +++ b/ext/dba/dba.c @@ -227,7 +227,7 @@ static size_t php_dba_make_key(zval **key, char **key_str, char **key_free TSRML size_t len; if (zend_hash_num_elements(Z_ARRVAL_PP(key)) != 2) { - php_error_docref(NULL TSRMLS_CC, E_ERROR, "Key does not have exactly two elements: (key, name)"); + php_error_docref(NULL TSRMLS_CC, E_RECOVERABLE_ERROR, "Key does not have exactly two elements: (key, name)"); return -1; } zend_hash_internal_pointer_reset_ex(Z_ARRVAL_PP(key), &pos); diff --git a/ext/dba/libinifile/inifile.c b/ext/dba/libinifile/inifile.c index c037aef75b5..9f69b12d91a 100644 --- a/ext/dba/libinifile/inifile.c +++ b/ext/dba/libinifile/inifile.c @@ -538,7 +538,7 @@ static int inifile_delete_replace_append(inifile *dba, const key_type *key, cons php_stream_seek(fp_tmp, 0, SEEK_SET); php_stream_seek(dba->fp, 0, SEEK_END); if (!php_stream_copy_to_stream(fp_tmp, dba->fp, PHP_STREAM_COPY_ALL)) { - php_error_docref(NULL TSRMLS_CC, E_ERROR, "Could not copy from temporary stream - ini file truncated"); + php_error_docref(NULL TSRMLS_CC, E_RECOVERABLE_ERROR, "Could not copy from temporary stream - ini file truncated"); ret = FAILURE; } }