<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/ext, branch php-7.0.0RC4</title>
<subtitle>git.php.net: repository/php-src.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/'/>
<entry>
<title>fix test</title>
<updated>2015-09-29T11:04:06+00:00</updated>
<author>
<name>Anatol Belski</name>
<email>ab@php.net</email>
</author>
<published>2015-09-29T09:53:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=bfd26370682b5b90ea63a4bbf5a7a9c6ce3f5866'/>
<id>bfd26370682b5b90ea63a4bbf5a7a9c6ce3f5866</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update openssl_x509_checkpurpose.phpt</title>
<updated>2015-09-29T08:41:24+00:00</updated>
<author>
<name>marcosptf</name>
<email>marcosptf@yahoo.com.br</email>
</author>
<published>2015-09-09T21:13:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=dae3ab8e7a840c2de8221e65c584756af0fd3c3d'/>
<id>dae3ab8e7a840c2de8221e65c584756af0fd3c3d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add test to openssl ext</title>
<updated>2015-09-29T08:41:22+00:00</updated>
<author>
<name>root</name>
<email>marcosptf@yahoo.com.br</email>
</author>
<published>2015-09-06T15:19:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=fc3580c9d518f5395b5ddcaf368b35c816a275b1'/>
<id>fc3580c9d518f5395b5ddcaf368b35c816a275b1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed or simplified incorrect SEPARATE_*() macros usage.</title>
<updated>2015-09-29T08:17:43+00:00</updated>
<author>
<name>Dmitry Stogov</name>
<email>dmitry@zend.com</email>
</author>
<published>2015-09-29T08:17:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=560e4fa39327e952652b6469d9644fc5fa2c15fa'/>
<id>560e4fa39327e952652b6469d9644fc5fa2c15fa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove makedev() check.</title>
<updated>2015-09-29T07:14:30+00:00</updated>
<author>
<name>Scott</name>
<email>scott@paragonie.com</email>
</author>
<published>2015-09-28T20:36:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=694b9af5b67d11a09a793056774e3fe8294da5f5'/>
<id>694b9af5b67d11a09a793056774e3fe8294da5f5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Different error message if makedev check fails</title>
<updated>2015-09-29T07:14:29+00:00</updated>
<author>
<name>Scott</name>
<email>scott@paragonie.com</email>
</author>
<published>2015-09-21T15:51:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=46aa628605341d879a685fe683114f8b22d0861f'/>
<id>46aa628605341d879a685fe683114f8b22d0861f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for getrandom(2), add type check on file descriptor</title>
<updated>2015-09-29T07:14:28+00:00</updated>
<author>
<name>Scott</name>
<email>scott@paragonie.com</email>
</author>
<published>2015-09-09T10:50:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=6554f721f770c99037f07d465a7d610568576ce4'/>
<id>6554f721f770c99037f07d465a7d610568576ce4</id>
<content type='text'>
Fix to_read, throw exception if syscall fails

Fixes thanks to feedback from sarnold at ##crypto on freenode

Correction on error conditions

Remove dead code (thanks @defuse)

It turns out getrandom can take &gt;256, getentropy refuses.

Better semantics

Thanks @defuse for catching my silly mistake here

Cast to size_t to be explicit

Let's simplify the logic a bit

Let's be consistent; define everything before we do any logic

Continuously check that the file descriptor is still a valid one

Add device type check on fd initialization
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix to_read, throw exception if syscall fails

Fixes thanks to feedback from sarnold at ##crypto on freenode

Correction on error conditions

Remove dead code (thanks @defuse)

It turns out getrandom can take &gt;256, getentropy refuses.

Better semantics

Thanks @defuse for catching my silly mistake here

Cast to size_t to be explicit

Let's simplify the logic a bit

Let's be consistent; define everything before we do any logic

Continuously check that the file descriptor is still a valid one

Add device type check on fd initialization
</pre>
</div>
</content>
</entry>
<entry>
<title>fix test</title>
<updated>2015-09-29T07:11:52+00:00</updated>
<author>
<name>Anatol Belski</name>
<email>ab@php.net</email>
</author>
<published>2015-09-29T07:11:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=208ed0a01059a32af38be5c3c5481c200c8ec4a2'/>
<id>208ed0a01059a32af38be5c3c5481c200c8ec4a2</id>
<content type='text'>
cutting out the '/' is not critical, but allows to avoid forking
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
cutting out the '/' is not critical, but allows to avoid forking
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-5.6' into PHP-7.0</title>
<updated>2015-09-29T04:43:16+00:00</updated>
<author>
<name>Stanislav Malyshev</name>
<email>stas@php.net</email>
</author>
<published>2015-09-29T04:43:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=d6e8426ebf10214f750b33c37fa5df0e909b919b'/>
<id>d6e8426ebf10214f750b33c37fa5df0e909b919b</id>
<content type='text'>
* PHP-5.6:
  Better fix for bug #70433

Conflicts:
	ext/phar/dirstream.c
	ext/phar/util.c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-5.6:
  Better fix for bug #70433

Conflicts:
	ext/phar/dirstream.c
	ext/phar/util.c
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-5.5' into PHP-5.6</title>
<updated>2015-09-29T04:42:08+00:00</updated>
<author>
<name>Stanislav Malyshev</name>
<email>stas@php.net</email>
</author>
<published>2015-09-29T04:42:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=2e267bd3c7f4c58d577d7ba7ebe813b0fb17e4a6'/>
<id>2e267bd3c7f4c58d577d7ba7ebe813b0fb17e4a6</id>
<content type='text'>
* PHP-5.5:
  Better fix for bug #70433

Conflicts:
	ext/phar/dirstream.c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-5.5:
  Better fix for bug #70433

Conflicts:
	ext/phar/dirstream.c
</pre>
</div>
</content>
</entry>
</feed>
