projects
/
notmuch.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8ef0d05
)
cli/dump: fix bug in dump header
author
David Bremner
<david@tethera.net>
Tue, 28 Mar 2017 11:09:03 +0000
(08:09 -0300)
committer
David Bremner
<david@tethera.net>
Sun, 2 Apr 2017 00:07:39 +0000
(21:07 -0300)
Fix copy paste error.
(cherry picked from commit
1f3c7916f82774cacbfbb0fbc9d0e0aaae9399b3
)
(changes to missing test dropped)
notmuch-dump.c
patch
|
blob
|
history
diff --git
a/notmuch-dump.c
b/notmuch-dump.c
index e7965ceab1c55fb9347b6657df45fa62330b4839..0bb946f8f3378babd16d261d2e1106e068150db5 100644
(file)
--- 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, "%s
propertie
s", sep);
+ gzprintf (output, "%s
tag
s", sep);
}
gzputs (output, "\n");
}