File pacemaker-systemd-log-failed-operation-segfault.patch of Package pacemaker.3577
commit 6c495a49d444404d0ed3fe910ace58befd2db8dc
Author: Andrew Beekhof <andrew@beekhof.net>
Date: Wed Nov 18 08:48:57 2015 +1100
Fix: systemd: Prevent segfaul when logging failed operations
diff --git a/lib/services/systemd.c b/lib/services/systemd.c
index 3d5a600..a851bc6 100644
--- a/lib/services/systemd.c
+++ b/lib/services/systemd.c
@@ -442,7 +442,7 @@ systemd_exec_result(DBusMessage *reply, svc_action_t *op)
/* ignore "already started" or "not running" errors */
if (!systemd_mask_error(op, error.name)) {
- crm_err("Could not issue %s for %s: %s (%s)", op->action, op->rsc, error.message);
+ crm_err("Could not issue %s for %s: %s", op->action, op->rsc, error.message);
}
} else {