Re: [Qemu-devel] [Qemu-block] [PATCH] curl: fix compilation on OpenBSD

2017-03-20 Thread Max Reitz
On 18.03.2017 18:23, Peter Maydell wrote: > On 18 March 2017 at 02:27, Max Reitz wrote: >> On 17.03.2017 16:24, Paolo Bonzini wrote: >>> EPROTO is not found in OpenBSD. We usually use EIO when no better >>> errno is available, do that here too. >>> >>> Reported-by: Peter Maydell >>> Signed-off-

Re: [Qemu-devel] [Qemu-block] [PATCH] curl: fix compilation on OpenBSD

2017-03-18 Thread Peter Maydell
On 18 March 2017 at 02:27, Max Reitz wrote: > On 17.03.2017 16:24, Paolo Bonzini wrote: >> EPROTO is not found in OpenBSD. We usually use EIO when no better >> errno is available, do that here too. >> >> Reported-by: Peter Maydell >> Signed-off-by: Paolo Bonzini >> --- >> block/curl.c | 2 +-

Re: [Qemu-devel] [Qemu-block] [PATCH] curl: fix compilation on OpenBSD

2017-03-17 Thread Max Reitz
On 17.03.2017 16:24, Paolo Bonzini wrote: > EPROTO is not found in OpenBSD. We usually use EIO when no better > errno is available, do that here too. > > Reported-by: Peter Maydell > Signed-off-by: Paolo Bonzini > --- > block/curl.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Tha