From acd7fdc6d80711371d7a1507a22438d9465da63c Mon Sep 17 00:00:00 2001 From: Maria Kustova Date: Tue, 18 Mar 2014 09:59:18 +0400 Subject: [PATCH] curl: Replaced old error handling with error reporting API. Signed-off-by: Maria Kustova Reviewed-by: Stefan Hajnoczi Signed-off-by: Kevin Wolf --- block/curl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: