Re: [PATCH] Use long for timezone in pretty.c:show_ident_date()

2014-03-07 Thread Eric Sunshine
On Fri, Mar 7, 2014 at 1:47 PM, Brian Gernhardt wrote: > The value is parsed with strtol and compared against LONG_MIN and > LONG_MAX, which doesn't make much sense for an int. > > Signed-off-by: Brian Gernhardt Thanks. Find a more complete fix here [1]. [1]: http://thread.gmane.org/gmane.comp.

[PATCH] Use long for timezone in pretty.c:show_ident_date()

2014-03-07 Thread Brian Gernhardt
The value is parsed with strtol and compared against LONG_MIN and LONG_MAX, which doesn't make much sense for an int. Signed-off-by: Brian Gernhardt --- pretty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pretty.c b/pretty.c index 3b811ed..29ebc4f 100644 --- a/pretty.c +