diff options
author | bertrand <bertrand@helixcode.com> | 2000-01-23 03:52:46 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 2000-01-23 03:52:46 +0800 |
commit | 15e6a36cefc4c87efd5314aab7e27ee10c4dbeb6 (patch) | |
tree | fc7dcbc1a1281e12cea15c78c6200403d763c825 /camel/providers/mbox/camel-mbox-summary.c | |
parent | 101996359f684e0282f1261f92f54d5b10e1ddb3 (diff) | |
download | gsoc2013-evolution-15e6a36cefc4c87efd5314aab7e27ee10c4dbeb6.tar.gz gsoc2013-evolution-15e6a36cefc4c87efd5314aab7e27ee10c4dbeb6.tar.zst gsoc2013-evolution-15e6a36cefc4c87efd5314aab7e27ee10c4dbeb6.zip |
implemented. A lot of fixes too. Works now.
2000-01-22 bertrand <bertrand@helixcode.com>
* camel/providers/mbox/camel-mbox-folder.c (_append_message):
implemented. A lot of fixes too. Works now.
svn path=/trunk/; revision=1608
Diffstat (limited to 'camel/providers/mbox/camel-mbox-summary.c')
-rw-r--r-- | camel/providers/mbox/camel-mbox-summary.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/providers/mbox/camel-mbox-summary.c b/camel/providers/mbox/camel-mbox-summary.c index 685d375fa7..f35ca16a16 100644 --- a/camel/providers/mbox/camel-mbox-summary.c +++ b/camel/providers/mbox/camel-mbox-summary.c @@ -238,7 +238,7 @@ camel_mbox_check_summary_sync (gchar *summary_filename, lseek (fd, sizeof (guint), SEEK_SET); /* read the md5 signature stored in the summary file */ - read (fd, summary_md5, + sizeof (guchar) * 16); + read (fd, summary_md5, sizeof (guchar) * 16); close (fd); /* ** FIXME : check for exception in all these operations */ |