diff options
author | Maria Kustova <maxa@catit.be> | 2014-03-18 09:59:18 +0400 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2014-04-22 11:57:02 +0200 |
commit | acd7fdc6d80711371d7a1507a22438d9465da63c (patch) | |
tree | 38e1d807d357a187471172aaf2b8f9d03bc0028b | |
parent | b8afb520e479e693c227aa39c2fb7670743e104f (diff) | |
download | qemu-acd7fdc6d80711371d7a1507a22438d9465da63c.zip qemu-acd7fdc6d80711371d7a1507a22438d9465da63c.tar.gz qemu-acd7fdc6d80711371d7a1507a22438d9465da63c.tar.bz2 |
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 1b9b1f6..6731d28 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: |