summaryrefslogtreecommitdiff
path: root/ext/dba/dba.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2000-12-16 21:01:21 +0000
committerAndi Gutmans <andi@php.net>2000-12-16 21:01:21 +0000
commit9fbd0a24ba7a0e4e5f31799c787a65212f1c2652 (patch)
tree535f3c778f8be20bb260fb655b0fdef859e4a304 /ext/dba/dba.c
parent8518010945fa3de1de65384a8b11e7e48161d452 (diff)
downloadphp-git-9fbd0a24ba7a0e4e5f31799c787a65212f1c2652.tar.gz
- How did CVS let me commit this? Probably it confused with the branch
merge
Diffstat (limited to 'ext/dba/dba.c')
-rw-r--r--ext/dba/dba.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/ext/dba/dba.c b/ext/dba/dba.c
index 053861aadc..c432b70018 100644
--- a/ext/dba/dba.c
+++ b/ext/dba/dba.c
@@ -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();