~ubuntu-branches/ubuntu/trusty/postgresql-9.3/trusty-proposed

« back to all changes in this revision

Viewing changes to src/backend/utils/misc/help_config.c

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2016-03-31 11:04:53 UTC
  • mfrom: (1.1.11) (18.1.4 trusty-security)
  • Revision ID: package-import@ubuntu.com-20160331110453-h6xfs9f11suj3mze
Tags: 9.3.12-0ubuntu0.14.04
* New upstream bug fix release. (LP: #1564268)
  - See http://www.postgresql.org/about/news/1656/ for details.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
typedef union
32
32
{
33
33
        struct config_generic generic;
34
 
        struct config_bool bool;
 
34
        struct config_bool _bool;
35
35
        struct config_real real;
36
36
        struct config_int integer;
37
37
        struct config_string string;
98
98
 
99
99
                case PGC_BOOL:
100
100
                        printf("BOOLEAN\t%s\t\t\t",
101
 
                                   (structToPrint->bool.reset_val == 0) ?
 
101
                                   (structToPrint->_bool.reset_val == 0) ?
102
102
                                   "FALSE" : "TRUE");
103
103
                        break;
104
104