diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2003-10-10 20:41:02 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2003-10-10 20:41:02 +0000 |
commit | 9dd8400af9d8cd28f84eaf19f0a6c4aeb7c84b43 (patch) | |
tree | 7aac956c7685c95a2f6f00b05e5ca81a491afce8 /fetchmail.h | |
parent | 8448bbcc5acf544042af536ffa81a23e65adfadb (diff) | |
download | fetchmail-9dd8400af9d8cd28f84eaf19f0a6c4aeb7c84b43.tar.gz fetchmail-9dd8400af9d8cd28f84eaf19f0a6c4aeb7c84b43.tar.bz2 fetchmail-9dd8400af9d8cd28f84eaf19f0a6c4aeb7c84b43.zip |
Dup killer now uses an MD5 hash of the message headers.
svn path=/trunk/; revision=3853
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.h b/fetchmail.h index f13b1205..e8286d48 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -316,7 +316,7 @@ struct query struct idlist *oldsaved, *newsaved; struct idlist **oldsavedend; char *lastid; /* last Message-ID seen on this connection */ - char *thisid; /* Message-ID of current message */ + char thisid[16]; /* Message fingerprint for dup killing */ /* internal use -- per-message state */ int mimemsg; /* bitmask indicating MIME body-type */ |