diff options
Diffstat (limited to 'qga/commands.c')
-rw-r--r-- | qga/commands.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qga/commands.c b/qga/commands.c index e87cbf862f..a0c2de07ec 100644 --- a/qga/commands.c +++ b/qga/commands.c @@ -54,6 +54,7 @@ static void qmp_command_info(QmpCommand *cmd, void *opaque) cmd_info = g_malloc0(sizeof(GuestAgentCommandInfo)); cmd_info->name = g_strdup(qmp_command_name(cmd)); cmd_info->enabled = qmp_command_is_enabled(cmd); + cmd_info->success_response = qmp_has_success_response(cmd); cmd_info_list = g_malloc0(sizeof(GuestAgentCommandInfoList)); cmd_info_list->value = cmd_info; |