8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 14:03:07 +01:00

Change minimal option length from S[SUSPEND] to SU[SPEND] in trace manager with Vlad's agreement.

This commit is contained in:
robocop 2009-07-12 12:39:45 +00:00
parent 97db80e02e
commit 89d81e1933
2 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ static void usage(UtilSvc* uSvc, const char* message, ...)
"Actions: \n"
" -STA[RT] Start trace session\n"
" -STO[P] Stop trace session\n"
" -S[USPEND] Suspend trace session\n"
" -SU[SPEND] Suspend trace session\n"
" -R[ESUME] Resume trace session\n"
" -L[IST] List existing trace sessions\n\n"
"\n"

View File

@ -65,7 +65,7 @@ static const struct in_sw_tab_t trace_action_in_sw_table [] =
{IN_SW_TRACE_RESUME, isc_action_svc_trace_resume, "RESUME", 0, 0, 0, false, 0, 1, NULL},
{IN_SW_TRACE_STOP, isc_action_svc_trace_stop, "STOP", 0, 0, 0, false, 0, 3, NULL},
{IN_SW_TRACE_START, isc_action_svc_trace_start, "START", 0, 0, 0, false, 0, 3, NULL},
{IN_SW_TRACE_SUSPEND, isc_action_svc_trace_suspend, "SUSPEND", 0, 0, 0, false, 0, 1, NULL},
{IN_SW_TRACE_SUSPEND, isc_action_svc_trace_suspend, "SUSPEND", 0, 0, 0, false, 0, 2, NULL},
{0, 0, NULL, 0, 0, 0, false, 0, 0, NULL} // End of List
};