diff options
author | Daniel P. Berrange <berrange@redhat.com> | 2012-03-13 15:28:26 +0000 |
---|---|---|
committer | Daniel P. Berrange <berrange@redhat.com> | 2012-04-25 09:42:11 +0100 |
commit | 6a8b7585e2051baa911b665ed713835bc65515d6 (patch) | |
tree | 348a1d418b42a4565c96b9f183b8be451c5d7468 /client/red_peer.cpp | |
parent | 832a98800d7ec97796eec3697e00e81f92a07898 (diff) | |
download | spice-6a8b7585e2051baa911b665ed713835bc65515d6.tar.gz spice-6a8b7585e2051baa911b665ed713835bc65515d6.tar.xz spice-6a8b7585e2051baa911b665ed713835bc65515d6.zip |
Fix multiple printf format problems
All printf var-args style methods should be annotation with
their format. All format strings must be const strings.
* client/application.cpp, client/cmd_line_parser.cpp,
client/hot_keys.cpp: Avoid non-const format
* client/client_net_socket.cpp: Fix broken format specifier
* client/red_peer.cpp: Fix missing format specifier
* client/platform.h: Add SPICE_GNUC_PRINTF annotation to term_printf
* client/utils.h: Add SPICE_GNUC_PRINTF annotation to string_printf
* server/glz_encoder_config.h, server/red_worker.c: Add
SPICE_GNUC_PRINTF annotation to warning callbacks
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Diffstat (limited to 'client/red_peer.cpp')
-rw-r--r-- | client/red_peer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/red_peer.cpp b/client/red_peer.cpp index 64e43d5b..10640c8d 100644 --- a/client/red_peer.cpp +++ b/client/red_peer.cpp @@ -38,7 +38,7 @@ static void ssl_error() unsigned long last_error = ERR_peek_last_error(); ERR_print_errors_fp(stderr); - THROW_ERR(SPICEC_ERROR_CODE_SSL_ERROR, "SSL Error:", ERR_error_string(last_error, NULL)); + THROW_ERR(SPICEC_ERROR_CODE_SSL_ERROR, "SSL Error: %s", ERR_error_string(last_error, NULL)); } RedPeer::RedPeer() |