* [patch] e2fsprogs time value is interpreted as signed
@ 2007-06-17 9:47 Dmitriy Monakhov
0 siblings, 0 replies; only message in thread
From: Dmitriy Monakhov @ 2007-06-17 9:47 UTC (permalink / raw)
To: linux-ext4
after bug: http://bugzilla.kernel.org/show_bug.cgi?id=5079
was fixed by:
commit 4d7bf11d649c72621ca31b8ea12b9c94af380e63
Author: Markus Rechberger <Markus.Rechberger@amd.com>
Date: Tue May 8 00:23:39 2007 -0700
__u32 time value becomes interpreat as signed value. This patch add
coresponding fix to debug fs routine.
Signed-off-by: Dmitriy Monakhov <dmonakhov@openvz.org>
---
debugfs/util.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/debugfs/util.c b/debugfs/util.c
index c6096ab..53a0813 100644
--- a/debugfs/util.c
+++ b/debugfs/util.c
@@ -187,7 +187,7 @@ int check_fs_bitmaps(char *name)
char *time_to_string(__u32 cl)
{
static int do_gmt = -1;
- time_t t = (time_t) cl;
+ time_t t = (time_t)(signed) cl;
char * tz;
if (do_gmt == -1) {
--
1.5.2
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2007-06-17 9:46 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-17 9:47 [patch] e2fsprogs time value is interpreted as signed Dmitriy Monakhov
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.