diff options
author | Pavel Roskin <plroskin@gmail.com> | 2016-02-07 23:15:54 -0800 |
---|---|---|
committer | Pavel Roskin <plroskin@gmail.com> | 2016-02-07 23:15:54 -0800 |
commit | 2a5d204baaa84207e835af570d89b10a17083fae (patch) | |
tree | 7e02f23e2d81a27d7b15a7ca7912bb0f30cb07eb /vnc | |
parent | 9717e7392ac07fb17a04c87aae1994156eaa5a77 (diff) | |
download | xrdp-proprietary-2a5d204baaa84207e835af570d89b10a17083fae.tar.gz xrdp-proprietary-2a5d204baaa84207e835af570d89b10a17083fae.zip |
Don't capitalize "Error" and print the error value
Diffstat (limited to 'vnc')
-rw-r--r-- | vnc/vnc.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1099,7 +1099,8 @@ lib_mod_connect(struct vnc *v) if (error != 0) { - log_message(LOG_LEVEL_DEBUG, "VNC Error after security negotiation"); + log_message(LOG_LEVEL_DEBUG, "VNC error %d after security negotiation", + error); } if (error == 0 && check_sec_result) |