Commit 78b25fd2 authored by Bruce Momjian's avatar Bruce Momjian

Add missing 'break' in Win32 switch statement, reported by Martin Zaun

parent d1c24460
/* /*
* $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 * pg_standby.c
...@@ -117,6 +117,7 @@ CustomizableInitialize(void) ...@@ -117,6 +117,7 @@ CustomizableInitialize(void)
{ {
case RESTORE_COMMAND_LINK: case RESTORE_COMMAND_LINK:
SET_RESTORE_COMMAND("mklink", WALFilePath, xlogFilePath); SET_RESTORE_COMMAND("mklink", WALFilePath, xlogFilePath);
break;
case RESTORE_COMMAND_COPY: case RESTORE_COMMAND_COPY:
default: default:
SET_RESTORE_COMMAND("copy", WALFilePath, xlogFilePath); SET_RESTORE_COMMAND("copy", WALFilePath, xlogFilePath);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment