From 27937a5d0e5d3756e43b2c726e084ef9bc549c18 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Wed, 8 Jul 2020 13:03:25 -0400 Subject: Fix -D now --- scoop.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scoop.c b/scoop.c index fed05ec..c4a7736 100644 --- a/scoop.c +++ b/scoop.c @@ -404,8 +404,9 @@ int main(int argc, char *argv[]) { append( where, SQL( - AND events.time >= strftime('%s', :date) - AND events.time < strftime('%s', :date, '+1 day') + AND events.time >= strftime('%s', :date, 'start of day') + AND events.time + < strftime('%s', :date, 'start of day', '+1 day') ) ); binds[n++] = Bind(":date", optarg, 0); -- cgit 1.4.1