]> git.pld-linux.org Git - packages/php.git/blob - php-5.3.7-bug-55014.patch
move php.1 manual to -program (link to actual php-cli)
[packages/php.git] / php-5.3.7-bug-55014.patch
1 --- PHP_5_3/main/reentrancy.c   2011/07/11 17:00:04     313143
2 +++ PHP_5_3/main/reentrancy.c   2011/07/11 17:01:23     313144
3 @@ -60,14 +60,14 @@
4  
5  PHPAPI char *php_ctime_r(const time_t *clock, char *buf)
6  {
7 -       if (ctime_r(clock, buf, 26) == buf)
8 +       if (ctime_r(clock, buf) == buf)
9                 return (buf);
10         return (NULL);
11  }
12  
13  PHPAPI char *php_asctime_r(const struct tm *tm, char *buf)
14  {
15 -       if (asctime_r(tm, buf, 26) == buf)
16 +       if (asctime_r(tm, buf) == buf)
17                 return (buf);
18         return (NULL);
19  }
This page took 0.02278 seconds and 3 git commands to generate.