diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2015-07-14 14:52:45 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2015-07-14 14:52:45 +0100 |
commit | 0030ff40472b9ebf0e0595afbc8d7e428218c5d7 (patch) | |
tree | 123740ca87ca5a3dd2f0115a46ee825e334837ba | |
parent | f3a1b5068cea303a55e2a21a97e66d057eaae638 (diff) | |
parent | a16951375f7669b7faf27f72ca753e25325c5179 (diff) |
Merge remote-tracking branch 'remotes/kraxel/tags/pull-vnc-20150714-1' into staging
vnc: fix vnc client authentication
# gpg: Signature made Tue Jul 14 14:38:48 2015 BST using RSA key ID D3E87138
# gpg: Good signature from "Gerd Hoffmann (work) <kraxel@redhat.com>"
# gpg: aka "Gerd Hoffmann <gerd@kraxel.org>"
# gpg: aka "Gerd Hoffmann (private) <kraxel@gmail.com>"
* remotes/kraxel/tags/pull-vnc-20150714-1:
vnc: fix vnc client authentication
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r-- | ui/vnc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2551,7 +2551,7 @@ static int protocol_client_auth_vnc(VncState *vs, uint8_t *data, size_t len) goto reject; } - if (qcrypto_cipher_decrypt(cipher, + if (qcrypto_cipher_encrypt(cipher, vs->challenge, response, VNC_AUTH_CHALLENGE_SIZE, |