1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-09 17:03:00 +03:00

Rename pg_upgrade 'log' to 'log_opts', to avoid platform naming conflict.

This commit is contained in:
Bruce Momjian
2010-10-20 02:31:17 +00:00
parent 3325c9bddb
commit 691a67b922
8 changed files with 48 additions and 48 deletions

View File

@@ -197,7 +197,7 @@ typedef struct
/*
* Log
* LogOpts
*/
typedef struct
{
@@ -206,7 +206,7 @@ typedef struct
bool debug; /* TRUE -> log more information */
FILE *debug_fd; /* debug-level log FILE */
bool verbose; /* TRUE -> be verbose in messages */
} Log;
} LogOpts;
/*
@@ -241,7 +241,7 @@ typedef struct
/*
* Global variables
*/
extern Log log;
extern LogOpts log_opts;
extern UserOpts user_opts;
extern ClusterInfo old_cluster,
new_cluster;