const char *results_start;
const char *thread_start;
void (*thread) (const void *ctx,
- const char *id,
+ const char *thread_id,
const time_t date,
const int matched,
const int total,
static void
format_thread_text (const void *ctx,
- const char *id,
+ const char *thread_id,
const time_t date,
const int matched,
const int total,
static void
format_thread_json (const void *ctx,
- const char *id,
+ const char *thread_id,
const time_t date,
const int matched,
const int total,
static void
format_thread_text (const void *ctx,
- const char *id,
+ const char *thread_id,
const time_t date,
const int matched,
const int total,
const char *subject)
{
printf ("thread:%s %12s [%d/%d] %s; %s",
- id,
+ thread_id,
notmuch_time_relative_date (ctx, date),
matched,
total,
static void
format_thread_json (const void *ctx,
- const char *id,
+ const char *thread_id,
const time_t date,
const int matched,
const int total,
tm = gmtime (&date);
if (tm == NULL)
- INTERNAL_ERROR ("gmtime failed on thread %s.", id);
+ INTERNAL_ERROR ("gmtime failed on thread %s.", thread_id);
if (strftime (timestamp, sizeof (timestamp), "%s", tm) == 0)
- INTERNAL_ERROR ("strftime failed on thread %s.", id);
+ INTERNAL_ERROR ("strftime failed on thread %s.", thread_id);
- printf ("\"id\": %s,\n"
+ printf ("\"thread\": %s,\n"
"\"timestamp\": %s,\n"
"\"matched\": %d,\n"
"\"total\": %d,\n"
"\"authors\": %s,\n"
"\"subject\": %s,\n",
- json_quote_str (ctx_quote, id),
+ json_quote_str (ctx_quote, thread_id),
timestamp,
matched,
total,