remote: fix typo in remoteDomainOpenGraphicsFD

The remoteDomainOpenGraphicsFD method was using the wrong RPC
arg struct remote_domain_open_graphics_args instead of
remote_domain_open_graphics_fd_args. Fortunately both structs
had identical contents so there was no functional bug, but to
avoid confusing future maintainers, we should fix it.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
This commit is contained in:
Daniel P. Berrange 2015-07-27 10:29:59 +01:00
parent 7868f01783
commit afe69e6582
1 changed files with 1 additions and 1 deletions

View File

@ -6456,7 +6456,7 @@ remoteDomainOpenGraphicsFD(virDomainPtr dom,
unsigned int flags) unsigned int flags)
{ {
int rv = -1; int rv = -1;
remote_domain_open_graphics_args args; remote_domain_open_graphics_fd_args args;
struct private_data *priv = dom->conn->privateData; struct private_data *priv = dom->conn->privateData;
int *fdout = NULL; int *fdout = NULL;
size_t fdoutlen = 0; size_t fdoutlen = 0;