felipe Fri, 10 Jun 2011 22:48:36 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=312031
Log: - Fixed bug #55028 (// is abad comment) Bug: http://bugs.php.net/55028 (Open) // is abad comment Changed paths: U php/php-src/branches/PHP_5_3/ext/openssl/xp_ssl.c U php/php-src/branches/PHP_5_4/ext/openssl/xp_ssl.c U php/php-src/trunk/ext/openssl/xp_ssl.c Modified: php/php-src/branches/PHP_5_3/ext/openssl/xp_ssl.c =================================================================== --- php/php-src/branches/PHP_5_3/ext/openssl/xp_ssl.c 2011-06-10 22:13:08 UTC (rev 312030) +++ php/php-src/branches/PHP_5_3/ext/openssl/xp_ssl.c 2011-06-10 22:48:36 UTC (rev 312031) @@ -145,7 +145,7 @@ 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'); Modified: php/php-src/branches/PHP_5_4/ext/openssl/xp_ssl.c =================================================================== --- php/php-src/branches/PHP_5_4/ext/openssl/xp_ssl.c 2011-06-10 22:13:08 UTC (rev 312030) +++ php/php-src/branches/PHP_5_4/ext/openssl/xp_ssl.c 2011-06-10 22:48:36 UTC (rev 312031) @@ -145,7 +145,7 @@ 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'); Modified: php/php-src/trunk/ext/openssl/xp_ssl.c =================================================================== --- php/php-src/trunk/ext/openssl/xp_ssl.c 2011-06-10 22:13:08 UTC (rev 312030) +++ php/php-src/trunk/ext/openssl/xp_ssl.c 2011-06-10 22:48:36 UTC (rev 312031) @@ -145,7 +145,7 @@ 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');
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php