summaryrefslogtreecommitdiffstats
path: root/notmuch-dump.c
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2017-03-28 08:09:03 -0300
committerDavid Bremner <david@tethera.net>2017-04-01 09:09:33 -0300
commit1f3c7916f82774cacbfbb0fbc9d0e0aaae9399b3 (patch)
treed01ba646c1792b123fd9227479829b0473ab3d5d /notmuch-dump.c
parent704bd3d8a249b4041aa6a4204032f2b336f374e8 (diff)
cli/dump: fix bug in dump header
Fix copy paste error.
Diffstat (limited to 'notmuch-dump.c')
-rw-r--r--notmuch-dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/notmuch-dump.c b/notmuch-dump.c
index e7965cea..0bb946f8 100644
--- a/notmuch-dump.c
+++ b/notmuch-dump.c
@@ -84,7 +84,7 @@ print_dump_header (gzFile output, int output_format, int include)
sep = ",";
}
if (include & DUMP_INCLUDE_TAGS) {
- gzprintf (output, "%sproperties", sep);
+ gzprintf (output, "%stags", sep);
}
gzputs (output, "\n");
}