php.net SSL cert expired

php.internals

Pascal Chevrel

10 years ago
Hi, FYI the php.net SSL certificate has expired : wiki.php.net uses an invalid security certificate. The certificate expired on 03/06/2016 01:59. The current time is 03/06/2016 04:48. Regards Pascal

Michael Felt

10 years ago
Hi, Years ago I reported what I thought should be fairly simple to resolve. The issue number (below) is that now the zend code goes through the following logic # test 1 #define __restrict__ restrict later test #2 # define __restrict__ And always: #define restrict __restrict__ In this case: test #1 is done by the OS include files, and test#2 and the final assignment are done in zend*.h (was zend.h, now zend_portability.h) As I do not really *know* the importance of the *restrict* and/or *__restrict__* keywords, maybe this is less important than spilled milk. My idea for a patch was to not do test 2 if __restrict__ was already defined. However, what is the value, or sense of the result - which would be: #define __restrict__ restrict #define restrict __restrict__ It feels like a bug - it certainly confuses me. M p.s. https://bugs.php.net/bug.php?id=62346