diff options
Diffstat (limited to 'ctdb/server/eventscript.c')
-rw-r--r-- | ctdb/server/eventscript.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ctdb/server/eventscript.c b/ctdb/server/eventscript.c index bf95b2114b..a108b785ed 100644 --- a/ctdb/server/eventscript.c +++ b/ctdb/server/eventscript.c @@ -754,8 +754,9 @@ static int ctdb_event_script_callback_v(struct ctdb_context *ctdb, return -1; } if (!check_options(state->call, state->options)) { - DEBUG(DEBUG_ERR, ("Bad eventscript options '%s' for %s\n", - ctdb_eventscript_call_names[state->call], state->options)); + DEBUG(DEBUG_ERR, ("Bad eventscript options '%s' for '%s'\n", + state->options, + ctdb_eventscript_call_names[state->call])); talloc_free(state); return -1; } |