rename config_dump to config_print, it's not configuring "dump".

This commit is contained in:
Keith Bostic
2011-03-21 12:27:22 -04:00
parent bdf25d8b5e
commit cdaf3f1a2e
3 changed files with 6 additions and 6 deletions

View File

@@ -119,11 +119,11 @@ config_names(void)
}
/*
* config_dump --
* Dump configuration structure.
* config_print --
* Print configuration information.
*/
void
config_dump(int error_display)
config_print(int error_display)
{
CONFIG *cp;
FILE *fp;

View File

@@ -76,7 +76,7 @@ main(int argc, char *argv[])
if (wts_startup(log))
return (EXIT_FAILURE);
config_dump(0); /* Dump run configuration */
config_print(0); /* Dump run configuration */
if (wts_bulk_load()) /* Load initial records */
goto err;
@@ -140,7 +140,7 @@ main(int argc, char *argv[])
return (EXIT_SUCCESS);
err: config_dump(1);
err: config_print(1);
return (EXIT_FAILURE);
}

View File

@@ -91,9 +91,9 @@ void bdb_startup(void);
void bdb_teardown(void);
const char *
config_dtype(void);
void config_dump(int);
void config_file(const char *);
void config_names(void);
void config_print(int);
void config_setup(void);
void config_single(char *, int);
void data_gen(void *, uint32_t *, int);