From mboxrd@z Thu Jan 1 00:00:00 1970 From: lhh@sourceware.org Date: 28 Sep 2006 20:02:08 -0000 Subject: [Cluster-devel] cluster/rgmanager/src/daemons rg_state.c Message-ID: <20060928200208.13230.qmail@sourceware.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit CVSROOT: /cvs/cluster Module name: cluster Branch: RHEL4 Changes by: lhh at sourceware.org 2006-09-28 20:02:07 Modified files: rgmanager/src/daemons: rg_state.c Log message: Fix segfault due to missing param Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/rgmanager/src/daemons/rg_state.c.diff?cvsroot=cluster&only_with_tag=RHEL4&r1=1.4.2.15&r2=1.4.2.16 --- cluster/rgmanager/src/daemons/rg_state.c 2006/09/27 12:22:41 1.4.2.15 +++ cluster/rgmanager/src/daemons/rg_state.c 2006/09/28 20:02:07 1.4.2.16 @@ -943,7 +943,8 @@ if (old_state == RG_STATE_FAILED && newstate == RG_STATE_DISABLED) { if (ret) clulog(LOG_ALERT, "Marking %s as 'disabled', " - "but some resources may still be allocated!\n"); + "but some resources may still be allocated!\n", + svcName); _svc_stop_finish(svcName, 0, newstate); } else { _svc_stop_finish(svcName, ret, newstate);