Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b416c8 commit babbd12Copy full SHA for babbd12
src/backend/utils/misc/help_config.c
@@ -10,7 +10,7 @@
10
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
11
*
12
* IDENTIFICATION
13
- * $PostgreSQL: pgsql/src/backend/utils/misc/help_config.c,v 1.19 2008/01/01 19:45:54 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/misc/help_config.c,v 1.19.2.1 2008/02/23 19:23:37 tgl Exp $
14
15
*-------------------------------------------------------------------------
16
*/
@@ -117,7 +117,7 @@ printMixedStruct(mixedStruct *structToPrint)
117
118
case PGC_STRING:
119
printf("STRING\t%s\t\t\t",
120
- structToPrint->string.boot_val);
+ structToPrint->string.boot_val ? structToPrint->string.boot_val : "");
121
break;
122
123
default:
0 commit comments