~ubuntu-branches/ubuntu/raring/pgpool2/raring-proposed

« back to all changes in this revision

Viewing changes to pool_process_reporting.c

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Berg
  • Date: 2011-06-10 10:18:29 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20110610101829-oy0uronxs3xz6jer
Tags: 3.0.4-1
* New upstream release
* Use format 3.0 (quilt).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*-pgsql-c-*- */
2
2
/*
3
 
 * $Header: /cvsroot/pgpool/pgpool-II/pool_process_reporting.c,v 1.15.2.2 2011/01/26 01:38:27 kitagawa Exp $
 
3
 * $Header: /cvsroot/pgpool/pgpool-II/pool_process_reporting.c,v 1.15.2.3 2011/05/23 09:34:17 gleu Exp $
4
4
 *
5
5
 * pgpool: a language independent connection pool server for PostgreSQL
6
6
 * written by Tatsuo Ishii
487
487
                snprintf(status[i].desc, POOLCONFIG_MAXDESCLEN, "weight of backend #%d", j);
488
488
                i++;
489
489
 
490
 
                snprintf(status[i].name, POOLCONFIG_MAXNAMELEN, "backend status%d", j);
 
490
                snprintf(status[i].name, POOLCONFIG_MAXNAMELEN, "backend_status%d", j);
491
491
                snprintf(status[i].value, POOLCONFIG_MAXVALLEN, "%d", BACKEND_INFO(j).backend_status);
492
492
                snprintf(status[i].desc, POOLCONFIG_MAXDESCLEN, "status of backend #%d", j);
493
493
                i++;