From: Tatsuo Ishii Date: Thu, 25 Oct 2018 10:58:34 +0000 (+0900) Subject: Fix typo in child_max_connections description. X-Git-Tag: V3_4_20~4 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=6f8507e32b7077251b75fd608e71ffb6d291c9c7;p=pgpool2.git Fix typo in child_max_connections description. Patch provided by Phil Ramirez. --- diff --git a/src/utils/pool_process_reporting.c b/src/utils/pool_process_reporting.c index 9fb8f3849..51bdd08f4 100644 --- a/src/utils/pool_process_reporting.c +++ b/src/utils/pool_process_reporting.c @@ -255,7 +255,7 @@ POOL_REPORT_CONFIG* get_config(int *nrows) StrNCpy(status[i].name, "child_max_connections", POOLCONFIG_MAXNAMELEN); snprintf(status[i].value, POOLCONFIG_MAXVALLEN, "%d", pool_config->child_max_connections); - StrNCpy(status[i].desc, "if max_connections received, chile exits", POOLCONFIG_MAXDESCLEN); + StrNCpy(status[i].desc, "if max_connections received, child exits", POOLCONFIG_MAXDESCLEN); i++; StrNCpy(status[i].name, "connection_life_time", POOLCONFIG_MAXNAMELEN);