diff options
| author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2010-08-26 19:24:40 +0000 | 
|---|---|---|
| committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2010-08-26 19:24:40 +0000 | 
| commit | 803250e97bff07c56b3df517b0e05654aefe9d47 (patch) | |
| tree | 58faf5bfe72dd42ef658a1363b0798afdee4eca7 /src | |
| parent | d97ccb83ba1da7b366c27f2650b024286778d582 (diff) | |
Remove duplicate translatable phrase
Diffstat (limited to 'src')
| -rw-r--r-- | src/backend/access/transam/xlog.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 12e99dbcff1..e9fc05c8ea7 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -7,7 +7,7 @@   * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group   * Portions Copyright (c) 1994, Regents of the University of California   * - * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.430.2.1 2010/08/01 23:07:04 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.430.2.2 2010/08/26 19:24:40 alvherre Exp $   *   *-------------------------------------------------------------------------   */ @@ -5231,7 +5231,7 @@ readRecoveryCommandFile(void)  			if (!parse_bool(tok2, &recoveryTargetInclusive))  				ereport(ERROR,  						(errcode(ERRCODE_INVALID_PARAMETER_VALUE), -						 errmsg("parameter \"recovery_target_inclusive\" requires a Boolean value"))); +						 errmsg("parameter \"%s\" requires a Boolean value", "recovery_target_inclusive")));  			ereport(DEBUG2,  					(errmsg("recovery_target_inclusive = %s", tok2)));  		} @@ -5240,7 +5240,7 @@ readRecoveryCommandFile(void)  			if (!parse_bool(tok2, &StandbyMode))  				ereport(ERROR,  						(errcode(ERRCODE_INVALID_PARAMETER_VALUE), -						 errmsg("parameter \"standby_mode\" requires a Boolean value"))); +						 errmsg("parameter \"%s\" requires a Boolean value", "standby_mode")));  			ereport(DEBUG2,  					(errmsg("standby_mode = '%s'", tok2)));  		}  | 
