summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Michael Haggerty <mhagger@alum.mit.edu>2013-01-15 09:06:30 +0100
committerLibravatar Junio C Hamano <gitster@pobox.com>2013-01-15 14:50:23 -0800
commit9a08cbb7cd22c0cfd3bb85b9ac6b374c3b701d42 (patch)
treea9e26388dfd4bbbd03613d8f4847bb189891a375
parentimap-send.c: use struct imap_store instead of struct store (diff)
downloadtgif-9a08cbb7cd22c0cfd3bb85b9ac6b374c3b701d42.tar.xz
imap-send.c: remove unused field imap_store::uidvalidity
I suspect that the existence of both imap_store::uidvalidity and store::uidvalidity was an accident. Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Reviewed-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--imap-send.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/imap-send.c b/imap-send.c
index 7141bcbbc4..7f900b7dda 100644
--- a/imap-send.c
+++ b/imap-send.c
@@ -124,7 +124,6 @@ struct imap {
struct imap_store {
struct store gen;
- int uidvalidity;
struct imap *imap;
const char *prefix;
};