diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2010-12-06 12:36:26 +0100 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2010-12-06 12:38:05 +0100 |
commit | 95e42a2c2980003880dee622fc3bed0b03322542 (patch) | |
tree | e0937b7bafde8b9cbd9b7755967e44a0379bfa9b /src/backend/access/transam/xlog.c | |
parent | 951d7861212120571a601d946194892db6f2bde1 (diff) | |
download | postgresql-95e42a2c2980003880dee622fc3bed0b03322542.tar.gz postgresql-95e42a2c2980003880dee622fc3bed0b03322542.zip |
Fix two typos, by Fujii Masao.
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index ae9ed8fe4ce..1ed9687cb89 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -3087,10 +3087,10 @@ not_available: * * 'command' is the shell command to be executed, 'commandName' is a * human-readable name describing the command emitted in the logs. If - * 'failonSignal' is true and the command is killed by a signal, a FATAL + * 'failOnSignal' is true and the command is killed by a signal, a FATAL * error is thrown. Otherwise a WARNING is emitted. * - * This is currently used for restore_end_command and archive_cleanup_command. + * This is currently used for recovery_end_command and archive_cleanup_command. */ static void ExecuteRecoveryCommand(char *command, char *commandName, bool failOnSignal) |