> were there any problems with the cvs server yesterday? In my commit
> from yesterday morning i added the line pp++, this was commited as
> p++. In my file on the harddisk there is clearly a pp++ and NOT a p++.
> (Which makes no sense anyway)
>
commit message states...
- if (p-pp > 1) {
- ret->pass = estrndup(++pp, (p-pp-1));
+ if (p-pp > 1) {
+ p++;
+ ret->pass = estrndup(pp, (p-pp));
php_replace_controlchars(ret->pass);
so it doesn't really look like there was a problem...
-- james
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php