diff options
author | June McEnroe <june@causal.agency> | 2020-01-16 11:47:45 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-01-16 11:47:45 -0500 |
commit | aa6ae879cc5ba876d38499070859512af8edc4d7 (patch) | |
tree | f12d152be449300744684b73b47a45db8e079653 /scoop.c | |
parent | Remove note about usernames for pounce (diff) | |
download | litterbox-aa6ae879cc5ba876d38499070859512af8edc4d7.tar.gz litterbox-aa6ae879cc5ba876d38499070859512af8edc4d7.zip |
Add scoop flag for local time
Diffstat (limited to '')
-rw-r--r-- | scoop.c | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/scoop.c b/scoop.c index 006a416..7fb9e28 100644 --- a/scoop.c +++ b/scoop.c @@ -227,7 +227,18 @@ static const char *Inner = SQL( SELECT contexts.network, contexts.name AS context, - strftime(coalesce(:format, '%Y-%m-%dT%H:%M:%SZ'), events.time) AS time, + CASE WHEN :local THEN + strftime( + coalesce(:format, '%Y-%m-%dT%H:%M:%S'), + events.time, + 'localtime' + ) + ELSE + strftime( + coalesce(:format, '%Y-%m-%dT%H:%M:%SZ'), + events.time + ) + END AS time, events.type, names.nick, names.user, @@ -365,11 +376,12 @@ int main(int argc, char *argv[]) { const char *where = NULL; int opt; - const char *Opts = "D:F:N:T:a:b:c:d:f:gh:l:m:n:pqst:u:vw:"; + const char *Opts = "D:F:LN:T:a:b:c:d:f:gh:l:m:n:pqst:u:vw:"; while (0 < (opt = getopt(argc, argv, Opts))) { switch (opt) { break; case 'D': binds[n++] = Bind(":date", optarg, 0); break; case 'F': binds[n++] = Bind(":format", optarg, 0); + break; case 'L': binds[n++] = Bind(":local", NULL, 1); break; case 'N': binds[n++] = Bind(":network", optarg, 0); break; case 'T': binds[n++] = Bind(":target", optarg, 0); break; case 'a': binds[n++] = Bind(":after", optarg, 0); |