summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2002-12-12 14:12:42 +0000
committerMarcus Boerger <helly@php.net>2002-12-12 14:12:42 +0000
commitc2078cdabf60ff9043eade4fc58674004abc864c (patch)
treedde05f2f1251db995fc56ea7d8a4a88468828ceb
parente27f3fc7e1ef2f67d0641678f49411d704b8debd (diff)
downloadphp-git-c2078cdabf60ff9043eade4fc58674004abc864c.tar.gz
php_error -> php_error_docref conversion fix (noticed by derick)
-rw-r--r--ext/openssl/openssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c
index 3366568219..61f781eea5 100644
--- a/ext/openssl/openssl.c
+++ b/ext/openssl/openssl.c
@@ -255,7 +255,7 @@ static time_t asn1_time_to_time_t(ASN1_UTCTIME * timestr TSRMLS_DC)
long gmadjust = 0;
if (timestr->length < 13) {
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "%extension author too lazy to parse %s correctly", timestr->data);
+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "extension author too lazy to parse %s correctly", timestr->data);
return (time_t)-1;
}