Re: [PATCH 1/1] Fix bug in export 64 bit unsigned environment variable.

2014-04-29 Thread Sascha Hauer
On Tue, Apr 29, 2014 at 03:16:02PM -0400, Michael D. Burkey wrote: > This patch corrects exporting unsigned 64-bit environment variables. > I had left out a signed off line before. > > Signed-off-by: Michael Burkey Applied, thanks Sascha > --- > > > --- a/common/env.c > +++ b/common/env.c >

[PATCH 1/1] Fix bug in export 64 bit unsigned environment variable.

2014-04-29 Thread Michael D. Burkey
This patch corrects exporting unsigned 64-bit environment variables. I had left out a signed off line before. Signed-off-by: Michael Burkey --- --- a/common/env.c +++ b/common/env.c @@ -258,7 +258,7 @@ void export_env_ull(const char *name, unsigned long long val) { - char *valstr = asp

[PATCH 1/1] Fix bug in export 64 bit unsigned environment variable.

2014-04-10 Thread Michael D. Burkey
(As this is the first patch I'm posting directly to the list rather than through Sascha, feel free to yell at me if my format is wrong.) This fixes a fairly major, trivial bug in the export_env_ull function -- it is currently converting values to signed when it exports them. As the import function