summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorVipul Rahane <vipul@runtime.io>2016-05-09 11:05:35 -0700
committerVipul Rahane <vipul@runtime.io>2016-05-17 12:31:46 -0700
commitd890f701952a963da9195314ef7d757755acf16d (patch)
tree9092e748a113c03376aded04c891285a10424943 /sys
parente13bfdce65973bd046f09e5c0765511383637450 (diff)
Fix logs read request
Diffstat (limited to 'sys')
-rw-r--r--sys/log/src/log_nmgr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/log/src/log_nmgr.c b/sys/log/src/log_nmgr.c
index b9ab68cb..fd60ad59 100644
--- a/sys/log/src/log_nmgr.c
+++ b/sys/log/src/log_nmgr.c
@@ -87,7 +87,7 @@ log_nmgr_encode_entry(struct log *log, void *arg, void *dptr, uint16_t len)
}
/* Matching timestamps and indices for sending a log entry */
- if (ueh.ue_ts <= encode_off->eo_ts ||
+ if (ueh.ue_ts < encode_off->eo_ts ||
(ueh.ue_ts == encode_off->eo_ts &&
ueh.ue_index <= encode_off->eo_index)) {
goto err;