aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch-show.c
diff options
context:
space:
mode:
authorGravatar David Edmondson <dme@dme.org>2010-04-16 12:47:49 +0100
committerGravatar Carl Worth <cworth@cworth.org>2010-04-22 14:52:32 -0700
commitafb8c9ca62ef205b83510b96ffe20aa85f1fb83f (patch)
tree92152585e90fc3e6f30b153af03a547c663ae8cf /notmuch-show.c
parent0b2cf3527e71d06e560ef9875ac3c9b53a7bf3d0 (diff)
json: Replace `date_unix' with `timestamp' in show output
Search output was already using `timestamp' for a very similar field, so follow that.
Diffstat (limited to 'notmuch-show.c')
-rw-r--r--notmuch-show.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/notmuch-show.c b/notmuch-show.c
index 76873a1d..26449fa5 100644
--- a/notmuch-show.c
+++ b/notmuch-show.c
@@ -145,7 +145,7 @@ format_message_json (const void *ctx, notmuch_message_t *message, unused (int in
date = notmuch_message_get_date (message);
relative_date = notmuch_time_relative_date (ctx, date);
- printf ("\"id\": %s, \"match\": %s, \"filename\": %s, \"date_unix\": %ld, \"date_relative\": \"%s\", \"tags\": [",
+ printf ("\"id\": %s, \"match\": %s, \"filename\": %s, \"timestamp\": %ld, \"date_relative\": \"%s\", \"tags\": [",
json_quote_str (ctx_quote, notmuch_message_get_message_id (message)),
notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH) ? "true" : "false",
json_quote_str (ctx_quote, notmuch_message_get_filename (message)),