summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2011-06-10 22:48:36 +0000
committerFelipe Pena <felipe@php.net>2011-06-10 22:48:36 +0000
commit0e37aa144f19f318f2ba0f1600b10afc21d999a3 (patch)
tree10727fb263dc2799132a147af53aa2640636a425
parentc7a8bd6a4c4bb36657d3d8e313935032283a5e73 (diff)
downloadphp-git-0e37aa144f19f318f2ba0f1600b10afc21d999a3.tar.gz
- Fixed bug #55028 (// is abad comment)
-rw-r--r--ext/openssl/xp_ssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/xp_ssl.c b/ext/openssl/xp_ssl.c
index 75fee75d71..4b4a144691 100644
--- a/ext/openssl/xp_ssl.c
+++ b/ext/openssl/xp_ssl.c
@@ -145,7 +145,7 @@ static int handle_ssl_error(php_stream *stream, int nr_bytes, zend_bool is_init
default:
do {
- // NULL is automatically added
+ /* NULL is automatically added */
ERR_error_string_n(ecode, esbuf, sizeof(esbuf));
if (ebuf.c) {
smart_str_appendc(&ebuf, '\n');