[Libguestfs] [PATCH] diff: do not pad uid/gid in CSV mode

Richard W.M. Jones rjones at redhat.com
Mon Oct 20 09:07:46 UTC 2014


On Tue, Oct 14, 2014 at 11:10:22AM +0200, Pino Toscano wrote:
> ---
>  diff/diff.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/diff/diff.c b/diff/diff.c
> index f4b25e9..ad371b0 100644
> --- a/diff/diff.c
> +++ b/diff/diff.c
> @@ -1108,7 +1108,7 @@ output_int64_uid (int64_t i)
>  {
>    next_field ();
>    /* csv doesn't need escaping */
> -  if (printf ("%4" PRIi64, i) < 0) {
> +  if (printf (csv ? "%" PRIi64 : "%4" PRIi64, i) < 0) {
>      perror ("printf");
>      exit (EXIT_FAILURE);
>    }
> -- 
> 1.9.3

Thanks - I will push all 3 patches shortly.

Rich.

-- 
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming and virtualization blog: http://rwmj.wordpress.com
virt-p2v converts physical machines to virtual machines.  Boot with a
live CD or over the network (PXE) and turn machines into KVM guests.
http://libguestfs.org/virt-v2v




More information about the Libguestfs mailing list