Skip to content

Commit 110c511

Browse files
committed
Sync with 1.7.6.6
Signed-off-by: Junio C Hamano <[email protected]>
2 parents 0065343 + f174a25 commit 110c511

File tree

2 files changed

+2
-24
lines changed

2 files changed

+2
-24
lines changed

Documentation/git.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,10 @@ Documentation for older releases are available here:
5454
link:RelNotes/1.7.7.1.txt[1.7.7.1],
5555
link:RelNotes/1.7.7.txt[1.7.7].
5656

57-
* link:v1.7.6.5/git.html[documentation for release 1.7.6.5]
57+
* link:v1.7.6.6/git.html[documentation for release 1.7.6.6]
5858

5959
* release notes for
60+
link:RelNotes/1.7.6.6.txt[1.7.6.6],
6061
link:RelNotes/1.7.6.5.txt[1.7.6.5],
6162
link:RelNotes/1.7.6.4.txt[1.7.6.4],
6263
link:RelNotes/1.7.6.3.txt[1.7.6.3],

imap-send.c

-23
Original file line numberDiff line numberDiff line change
@@ -41,36 +41,13 @@ struct store_conf {
4141
unsigned trash_remote_new:1, trash_only_new:1;
4242
};
4343

44-
struct string_list {
45-
struct string_list *next;
46-
char string[1];
47-
};
48-
49-
struct channel_conf {
50-
struct channel_conf *next;
51-
char *name;
52-
struct store_conf *master, *slave;
53-
char *master_name, *slave_name;
54-
char *sync_state;
55-
struct string_list *patterns;
56-
int mops, sops;
57-
unsigned max_messages; /* for slave only */
58-
};
59-
60-
struct group_conf {
61-
struct group_conf *next;
62-
char *name;
63-
struct string_list *channels;
64-
};
65-
6644
/* For message->status */
6745
#define M_RECENT (1<<0) /* unsyncable flag; maildir_* depend on this being 1<<0 */
6846
#define M_DEAD (1<<1) /* expunged */
6947
#define M_FLAGS (1<<2) /* flags fetched */
7048

7149
struct message {
7250
struct message *next;
73-
/* struct string_list *keywords; */
7451
size_t size; /* zero implies "not fetched" */
7552
int uid;
7653
unsigned char flags, status;

0 commit comments

Comments
 (0)