diff options
author | Maria Kustova | 2014-03-18 06:59:18 +0100 |
---|---|---|
committer | Kevin Wolf | 2014-04-22 11:57:02 +0200 |
commit | acd7fdc6d80711371d7a1507a22438d9465da63c (patch) | |
tree | 38e1d807d357a187471172aaf2b8f9d03bc0028b | |
parent | block: Handle error of bdrv_getlength in bdrv_create_dirty_bitmap (diff) | |
download | qemu-acd7fdc6d80711371d7a1507a22438d9465da63c.tar.gz qemu-acd7fdc6d80711371d7a1507a22438d9465da63c.tar.xz qemu-acd7fdc6d80711371d7a1507a22438d9465da63c.zip |
curl: Replaced old error handling with error reporting API.
Signed-off-by: Maria Kustova <maria.k@catit.be>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rw-r--r-- | block/curl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/curl.c b/block/curl.c index 1b9b1f6341..6731d2891f 100644 --- a/block/curl.c +++ b/block/curl.c @@ -543,7 +543,7 @@ static int curl_open(BlockDriverState *bs, QDict *options, int flags, return 0; out: - fprintf(stderr, "CURL: Error opening file: %s\n", state->errmsg); + error_setg(errp, "CURL: Error opening file: %s", state->errmsg); curl_easy_cleanup(state->curl); state->curl = NULL; out_noclean: |