diff options
author | Colin Walters <walters@verbum.org> | 2010-07-09 11:48:53 -0400 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2010-07-09 11:52:59 -0400 |
commit | 8f2eb502a3c491b64012adb3ea8220a9952ce3c6 (patch) | |
tree | 33d2aa7867fc3a173cad0ecfccf8ab1bfc693faf /bus | |
parent | 8f5f340b77b51fed1f036a9ee9f70a31b201f2c9 (diff) | |
download | dbus-8f2eb502a3c491b64012adb3ea8220a9952ce3c6.tar.gz |
Fix use of $servicename in status
See https://bugzilla.redhat.com/show_bug.cgi?id=521797
We have two init scripts, and commit 05283235632bc8891aaa3047563cb4
patched the "wrong" (i.e. slackware) one. Patch one that ships
with real operating systems too.
Diffstat (limited to 'bus')
-rwxr-xr-x | bus/messagebus.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bus/messagebus.in b/bus/messagebus.in index 1f1004b1..3e2ee07a 100755 --- a/bus/messagebus.in +++ b/bus/messagebus.in @@ -68,7 +68,7 @@ case "$1" in stop ;; status) - status $processname + status $servicename RETVAL=$? ;; restart) |