summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Osterried <thomas@osterried.de>2009-01-24 09:56:41 +0000
committerThomas Osterried <thomas@osterried.de>2009-01-24 09:56:41 +0000
commit5e278be32663705b0441d462e8d8e8513b4eee19 (patch)
treebb05dad1c0e9b92dd4f0759388940859b699341a
parentd3d8414eac23144d3f39ee16e3eaa5a39a8c160d (diff)
fix for fix in dos to unix time conversion part
-rw-r--r--call/call.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/call/call.c b/call/call.c
index 7b15547..72ba9ff 100644
--- a/call/call.c
+++ b/call/call.c
@@ -546,7 +546,7 @@ int start_ab_download(int mode, WINDOW ** swin, wint * wintab,
date >>= 5;
ft.tm_min = date & 0x3F;
date >>= 6;
- ft.tm_hour = date & 0x0F;
+ ft.tm_hour = date & 0x1F;
date >>= 5;
ft.tm_mday = date & 0x1F;
date >>= 5;