Re: [Qemu-devel] [PATCH 1/1] qemu-img: Add --pkgversion common option

2015-01-09 Thread Don Slutz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 01/09/15 13:02, Don Slutz wrote: > Sigh. Will look into this. -Don Slutz > Here is what I said (un-encrypeted): On 01/08/15 11:41, Eric Blake wrote: > On 01/08/2015 07:40 AM, Peter Maydell wrote: >> On 8 January 2015 at 14:30, Don Slutz >> wro

Re: [Qemu-devel] [PATCH 1/1] qemu-img: Add --pkgversion common option

2015-01-09 Thread Don Slutz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Sigh. Will look into this. -Don Slutz On 01/09/15 11:13, Eric Blake wrote: > On 01/09/2015 08:28 AM, Don Slutz wrote: > > [an encrypted message] > > Oops, you probably want to fix your Thunderbird/Enigmail settings > to sign but not encrypt when

Re: [Qemu-devel] [PATCH 1/1] qemu-img: Add --pkgversion common option

2015-01-09 Thread Eric Blake
On 01/09/2015 08:28 AM, Don Slutz wrote: [an encrypted message] Oops, you probably want to fix your Thunderbird/Enigmail settings to sign but not encrypt when a list is involved. -- Eric Blake eblake redhat com+1-919-301-3266 Libvirt virtualization library http://libvirt.org signature.

Re: [Qemu-devel] [PATCH 1/1] qemu-img: Add --pkgversion common option

2015-01-09 Thread Don Slutz
binjhymGgf_MN.bin Description: PGP/MIME version identification encrypted.asc Description: OpenPGP encrypted message

Re: [Qemu-devel] [PATCH 1/1] qemu-img: Add --pkgversion common option

2015-01-08 Thread Eric Blake
On 01/08/2015 07:40 AM, Peter Maydell wrote: > On 8 January 2015 at 14:30, Don Slutz wrote: >> This will output the QEMU_PKGVERSION which is set by configure's >> --with-pkgversion= > >> +/* Report pkgversion */ >> +if (!strcmp(cmdname, "--pkgversion")) { >> +argc--; argv++; /* Dr

Re: [Qemu-devel] [PATCH 1/1] qemu-img: Add --pkgversion common option

2015-01-08 Thread Peter Maydell
On 8 January 2015 at 14:30, Don Slutz wrote: > This will output the QEMU_PKGVERSION which is set by configure's > --with-pkgversion= > +/* Report pkgversion */ > +if (!strcmp(cmdname, "--pkgversion")) { > +argc--; argv++; /* Drop special arg. */ > +printf("qemu-img version

[Qemu-devel] [PATCH 1/1] qemu-img: Add --pkgversion common option

2015-01-08 Thread Don Slutz
This will output the QEMU_PKGVERSION which is set by configure's --with-pkgversion= Signed-off-by: Don Slutz --- qemu-img.c | 11 +++ 1 file changed, 11 insertions(+) diff --git a/qemu-img.c b/qemu-img.c index 7876258..f73bea6 100644 --- a/qemu-img.c +++ b/qemu-img.c @@ -3064,6 +3064,17