|
4 | 4 | *
|
5 | 5 | * Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
|
6 | 6 | *
|
7 |
| - * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.51 2004/12/21 17:58:30 momjian Exp $ |
| 7 | + * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.52 2004/12/23 00:03:24 tgl Exp $ |
8 | 8 | *
|
9 | 9 | *-------------------------------------------------------------------------
|
10 | 10 | */
|
@@ -1078,7 +1078,7 @@ pgwin32_doRunAsService(void)
|
1078 | 1078 | SERVICE_TABLE_ENTRYst[]= {{register_servicename,pgwin32_ServiceMain},
|
1079 | 1079 | {NULL,NULL}};
|
1080 | 1080 |
|
1081 |
| -if (StartServiceCtrlDispatcher(st))==0) |
| 1081 | +if (StartServiceCtrlDispatcher(st)==0) |
1082 | 1082 | {
|
1083 | 1083 | write_stderr(_("%s: could not start service \"%s\": error code %d\n"),progname,register_servicename, (int)GetLastError());
|
1084 | 1084 | exit(1);
|
|