diff options
author | Bruce Momjian | 2008-12-15 21:11:54 +0000 |
---|---|---|
committer | Bruce Momjian | 2008-12-15 21:11:54 +0000 |
commit | 78b25fd2e9d7bc82774c1f518c5851ef7a83ded1 (patch) | |
tree | 192a78f0098dce3ae75ad0841034d905b8ef58c6 | |
parent | d1c24460bf40eb845b4675542fddeb1a62451dfe (diff) |
Add missing 'break' in Win32 switch statement, reported by Martin Zaun
-rw-r--r-- | contrib/pg_standby/pg_standby.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/pg_standby/pg_standby.c b/contrib/pg_standby/pg_standby.c index 15dc3442049..45192121aa5 100644 --- a/contrib/pg_standby/pg_standby.c +++ b/contrib/pg_standby/pg_standby.c @@ -1,5 +1,5 @@ /* - * $PostgreSQL: pgsql/contrib/pg_standby/pg_standby.c,v 1.13 2008/07/08 15:11:58 heikki Exp $ + * $PostgreSQL: pgsql/contrib/pg_standby/pg_standby.c,v 1.14 2008/12/15 21:11:54 momjian Exp $ * * * pg_standby.c @@ -117,6 +117,7 @@ CustomizableInitialize(void) { case RESTORE_COMMAND_LINK: SET_RESTORE_COMMAND("mklink", WALFilePath, xlogFilePath); + break; case RESTORE_COMMAND_COPY: default: SET_RESTORE_COMMAND("copy", WALFilePath, xlogFilePath); |