diff options
author | Alexander Chemeris <Alexander.Chemeris@gmail.com> | 2014-03-07 21:00:19 +0100 |
---|---|---|
committer | Holger Hans Peter Freyther <holger@moiji-mobile.com> | 2014-03-26 19:35:33 +0100 |
commit | cc0645b26df92b007e7f4f397607ee235c58172e (patch) | |
tree | fb40bae4066b82074c016b2a01ead70c10718e43 | |
parent | d0ed9218bc79a25b46023a6cc57aedcda3fc9152 (diff) |
sms: Add missing brackets in the relative validity time calculation.
-rw-r--r-- | src/gsm/gsm0411_utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gsm/gsm0411_utils.c b/src/gsm/gsm0411_utils.c index a8ba810d..0b543d6d 100644 --- a/src/gsm/gsm0411_utils.c +++ b/src/gsm/gsm0411_utils.c @@ -138,13 +138,13 @@ static unsigned long gsm340_vp_relative(uint8_t *sms_vp) vp = *(sms_vp); if (vp <= 143) - minutes = vp + 1 * 5; + minutes = (vp + 1) * 5; else if (vp <= 167) minutes = 12*60 + (vp-143) * 30; else if (vp <= 196) - minutes = vp-166 * 60 * 24; + minutes = (vp-166) * 60 * 24; else - minutes = vp-192 * 60 * 24 * 7; + minutes = (vp-192) * 60 * 24 * 7; return minutes; } |