summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorMaria Kustova <maxa@catit.be>2014-03-18 09:59:18 +0400
committerKevin Wolf <kwolf@redhat.com>2014-04-22 11:57:02 +0200
commitacd7fdc6d80711371d7a1507a22438d9465da63c (patch)
tree38e1d807d357a187471172aaf2b8f9d03bc0028b
parentb8afb520e479e693c227aa39c2fb7670743e104f (diff)
downloadfocaccia-qemu-acd7fdc6d80711371d7a1507a22438d9465da63c.tar.gz
focaccia-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.c2
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: