diff options
| author | Roy Marples <roy@marples.name> | 2007-10-02 09:02:08 +0000 | 
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2007-10-02 09:02:08 +0000 | 
| commit | cef0ad32157562efd93c7ce154a11c0abfd1a7b2 (patch) | |
| tree | 6fbbb5f53e451be357826ad1dd3061e24a8b1e85 /src/rc.h | |
| parent | 52f33e2815c830094c851d7b6620c41470188433 (diff) | |
| download | openrc-cef0ad32157562efd93c7ce154a11c0abfd1a7b2.tar.xz | |
rc_set_service_option -> rc_service_option_set, rc_get_service_option -> rc_service_option_get
Diffstat (limited to 'src/rc.h')
| -rw-r--r-- | src/rc.h | 4 | 
1 files changed, 2 insertions, 2 deletions
@@ -135,13 +135,13 @@ bool rc_service_wait (const char *service);   * @param service to check   * @param option to load   * @return saved value */ -char *rc_get_service_option (const char *service, const char *option); +char *rc_service_option_get (const char *service, const char *option);  /*! Save a persistent value for a service   * @param service to save for   * @param option to save   * @param value of the option   * @return true if saved, otherwise false */ -bool rc_set_service_option (const char *service, const char *option, +bool rc_service_option_set (const char *service, const char *option,  							const char *value);  /*! Save the arguments to find a running daemon   * @param service to save arguments for  | 
