All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] fix mingw build failure
@ 2017-05-16  5:24 Gerd Hoffmann
  2017-05-16  5:27 ` Stefan Weil
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Gerd Hoffmann @ 2017-05-16  5:24 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann, Daniel P. Berrange

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 crypto/random-platform.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/random-platform.c b/crypto/random-platform.c
index 0eddb915b7..92eed0ee78 100644
--- a/crypto/random-platform.c
+++ b/crypto/random-platform.c
@@ -23,7 +23,7 @@
 #include "crypto/random.h"
 
 #ifdef _WIN32
-#include <Wincrypt.h>
+#include <wincrypt.h>
 static HCRYPTPROV hCryptProv;
 #else
 static int fd; /* a file handle to either /dev/urandom or /dev/random */
-- 
2.9.3

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH] fix mingw build failure
  2017-05-16  5:24 [Qemu-devel] [PATCH] fix mingw build failure Gerd Hoffmann
@ 2017-05-16  5:27 ` Stefan Weil
  2017-05-16  8:20 ` Daniel P. Berrange
  2017-05-16 14:33 ` Stefan Hajnoczi
  2 siblings, 0 replies; 4+ messages in thread
From: Stefan Weil @ 2017-05-16  5:27 UTC (permalink / raw)
  To: Gerd Hoffmann, qemu-devel, QEMU Trivial

Am 16.05.2017 um 07:24 schrieb Gerd Hoffmann:
> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
> ---
>  crypto/random-platform.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/crypto/random-platform.c b/crypto/random-platform.c
> index 0eddb915b7..92eed0ee78 100644
> --- a/crypto/random-platform.c
> +++ b/crypto/random-platform.c
> @@ -23,7 +23,7 @@
>  #include "crypto/random.h"
>
>  #ifdef _WIN32
> -#include <Wincrypt.h>
> +#include <wincrypt.h>
>  static HCRYPTPROV hCryptProv;
>  #else
>  static int fd; /* a file handle to either /dev/urandom or /dev/random */
>

Thank you.

Reviewed-by: Stefan Weil <sw@weilnetz.de>

cc`ing qemu-trivial.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH] fix mingw build failure
  2017-05-16  5:24 [Qemu-devel] [PATCH] fix mingw build failure Gerd Hoffmann
  2017-05-16  5:27 ` Stefan Weil
@ 2017-05-16  8:20 ` Daniel P. Berrange
  2017-05-16 14:33 ` Stefan Hajnoczi
  2 siblings, 0 replies; 4+ messages in thread
From: Daniel P. Berrange @ 2017-05-16  8:20 UTC (permalink / raw)
  To: Gerd Hoffmann; +Cc: qemu-devel

On Tue, May 16, 2017 at 07:24:39AM +0200, Gerd Hoffmann wrote:
> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
> ---
>  crypto/random-platform.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/crypto/random-platform.c b/crypto/random-platform.c
> index 0eddb915b7..92eed0ee78 100644
> --- a/crypto/random-platform.c
> +++ b/crypto/random-platform.c
> @@ -23,7 +23,7 @@
>  #include "crypto/random.h"
>  
>  #ifdef _WIN32
> -#include <Wincrypt.h>
> +#include <wincrypt.h>
>  static HCRYPTPROV hCryptProv;
>  #else
>  static int fd; /* a file handle to either /dev/urandom or /dev/random */

Reviewed-by: Daniel P. Berrange <berrange@redhat.com>


Regards,
Daniel
-- 
|: https://berrange.com      -o-    https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org         -o-            https://fstop138.berrange.com :|
|: https://entangle-photo.org    -o-    https://www.instagram.com/dberrange :|

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PATCH] fix mingw build failure
  2017-05-16  5:24 [Qemu-devel] [PATCH] fix mingw build failure Gerd Hoffmann
  2017-05-16  5:27 ` Stefan Weil
  2017-05-16  8:20 ` Daniel P. Berrange
@ 2017-05-16 14:33 ` Stefan Hajnoczi
  2 siblings, 0 replies; 4+ messages in thread
From: Stefan Hajnoczi @ 2017-05-16 14:33 UTC (permalink / raw)
  To: Gerd Hoffmann; +Cc: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 298 bytes --]

On Tue, May 16, 2017 at 07:24:39AM +0200, Gerd Hoffmann wrote:
> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
> ---
>  crypto/random-platform.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Thanks, applied to my staging tree:
https://github.com/stefanha/qemu/commits/staging

Stefan

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-05-16 14:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-16  5:24 [Qemu-devel] [PATCH] fix mingw build failure Gerd Hoffmann
2017-05-16  5:27 ` Stefan Weil
2017-05-16  8:20 ` Daniel P. Berrange
2017-05-16 14:33 ` Stefan Hajnoczi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.