diff options
author | Roy Marples <roy@marples.name> | 2008-02-23 00:26:11 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-02-23 00:26:11 +0000 |
commit | 8b4b958678c52893ab1901c15dec123c99d56927 (patch) | |
tree | da63da0453b1d392390b09d7d0a3e281b45bf7ad /src/librc/rc.h | |
parent | 00aa221b9877e3c6d868adf6e7d17dde0763c50a (diff) | |
download | openrc-8b4b958678c52893ab1901c15dec123c99d56927.tar.xz |
Now that s-s-d accepts >1 argument for stopping a daemon on match we need to store all arguments used incase a service started the same daemon more than once with different paramters.
Diffstat (limited to 'src/librc/rc.h')
-rw-r--r-- | src/librc/rc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librc/rc.h b/src/librc/rc.h index 51755223..87e88609 100644 --- a/src/librc/rc.h +++ b/src/librc/rc.h @@ -190,7 +190,7 @@ pid_t rc_service_stop (const char *service); * @param exec to check * @param indx of the daemon (optional - 1st daemon, 2nd daemon, etc) * @return true if started by this service, otherwise false */ -bool rc_service_started_daemon (const char *service, const char *exec, +bool rc_service_started_daemon (const char *service, const char *const *argv, int indx); /*! Return a saved value for a service |