|
From: <haw...@us...> - 2007-04-02 14:03:10
|
Revision: 158
http://pgsqlformac.svn.sourceforge.net/pgsqlformac/?rev=158&view=rev
Author: hawkmoon
Date: 2007-04-02 07:03:11 -0700 (Mon, 02 Apr 2007)
Log Message:
-----------
Bug ID: 1692933
updated to address manual start / restart if environment has postgres disabled (hostconfig).
Modified Paths:
--------------
trunk/ServiceManager/SQLServiceManager.m
Modified: trunk/ServiceManager/SQLServiceManager.m
===================================================================
--- trunk/ServiceManager/SQLServiceManager.m 2007-04-02 13:34:00 UTC (rev 157)
+++ trunk/ServiceManager/SQLServiceManager.m 2007-04-02 14:03:11 UTC (rev 158)
@@ -229,11 +229,12 @@
if (myStatus == errAuthorizationSuccess)
{
const char *myToolPath = [pathToHelper cString];
- char *myArguments[3];
+ char *myArguments[4];
myArguments[0] = [command cString];
myArguments[1] = [operation cString];
- myArguments[2] = NULL;
+ myArguments[2] = "MANUAL";
+ myArguments[3] = NULL;
FILE *myCommunicationsPipe = NULL;
char myReadBuffer[128];
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|