From patchwork Thu Nov 15 07:09:49 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Fix the inconsistency in x509-dh-key-file parameter From: Lei Li X-Patchwork-Id: 199199 Message-Id: <1352963389-29706-1-git-send-email-lilei@linux.vnet.ibm.com> To: qemu-devel@nongnu.org Cc: Lei Li Date: Thu, 15 Nov 2012 15:09:49 +0800 Fix the inconsistency between the declaration of the option 'x509-dh-key-file' to -spice command line and its parameter parsing. https://bugs.launchpad.net/qemu/+bug/1035042 Reported-by: Alon Bar-Lev Signed-off-by: Lei Li --- ui/spice-core.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ui/spice-core.c b/ui/spice-core.c index 5147365..261c6f2 100644 --- a/ui/spice-core.c +++ b/ui/spice-core.c @@ -610,7 +610,7 @@ void qemu_spice_init(void) } x509_key_password = qemu_opt_get(opts, "x509-key-password"); - x509_dh_file = qemu_opt_get(opts, "x509-dh-file"); + x509_dh_file = qemu_opt_get(opts, "x509-dh-key-file"); tls_ciphers = qemu_opt_get(opts, "tls-ciphers"); }