Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 2f9b3ef

Browse files
committed
Suppress unused-variable warning on platforms without HAVE_SYSLOG.
Magnus
1 parent e7101b6 commit 2f9b3ef

File tree

1 file changed

+3
-1
lines changed
  • src/backend/utils/misc

1 file changed

+3
-1
lines changed

src/backend/utils/misc/guc.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Written by Peter Eisentraut <peter_e@gmx.net>.
1111
*
1212
* IDENTIFICATION
13-
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.314 2006/03/07 02:54:23 momjian Exp $
13+
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.315 2006/04/10 21:53:38 tgl Exp $
1414
*
1515
*--------------------------------------------------------------------
1616
*/
@@ -202,8 +202,10 @@ static char *log_error_verbosity_str;
202202
static char *log_statement_str;
203203
static char *log_min_error_statement_str;
204204
static char *log_destination_string;
205+
#ifdef HAVE_SYSLOG
205206
static char *syslog_facility_str;
206207
static char *syslog_ident_str;
208+
#endif
207209
static bool phony_autocommit;
208210
static bool session_auth_is_superuser;
209211
static double phony_random_seed;

0 commit comments

Comments
 (0)