mirror of
https://github.com/php/php-src.git
synced 2024-11-29 04:46:07 +08:00
- How did CVS let me commit this? Probably it confused with the branch
merge
This commit is contained in:
parent
8518010945
commit
9fbd0a24ba
@ -211,21 +211,11 @@ static PHP_MSHUTDOWN_FUNCTION(dba)
|
||||
static PHP_MINFO_FUNCTION(dba)
|
||||
{
|
||||
dba_handler *hptr;
|
||||
<<<<<<< dba.c
|
||||
static char handlers[80];
|
||||
=======
|
||||
smart_str handlers = {0};
|
||||
>>>>>>> 1.28
|
||||
|
||||
handlers[0] = '\0';
|
||||
|
||||
for(hptr = handler; hptr->name; hptr++) {
|
||||
<<<<<<< dba.c
|
||||
strlcat(handlers, hptr->name, sizeof(handlers));
|
||||
=======
|
||||
smart_str_appends(&handlers, hptr->name);
|
||||
smart_str_appendc(&handlers, ' ');
|
||||
>>>>>>> 1.28
|
||||
}
|
||||
|
||||
php_info_print_table_start();
|
||||
|
Loading…
Reference in New Issue
Block a user