On 26.05.2009 18:02, Arnaud Le Blanc wrote: > - /* WEXITSTATUS only returns 8 bits so we *MUST* cast this to signed char > - if you want to have valid negative exit codes */ > - RETURN_LONG((signed char) WEXITSTATUS(status_word)); > + RETURN_LONG(WEXITSTATUS(status_word));
Okay, now you CAN return 254, but you CAN'T return -2 anymore. I'd say this needs to be reverted just to be consistent with previous versions. -- Wbr, Antony Dovgal --- http://pinba.org - realtime statistics for PHP -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
