From: Maria Kustova Date: Tue, 18 Mar 2014 05:59:18 +0000 (+0400) Subject: curl: Replaced old error handling with error reporting API. X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=acd7fdc6d80711371d7a1507a22438d9465da63c;p=qemu.git curl: Replaced old error handling with error reporting API. Signed-off-by: Maria Kustova Reviewed-by: Stefan Hajnoczi Signed-off-by: Kevin Wolf --- 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: