aboutsummaryrefslogtreecommitdiff
path: root/libsylph/mbox.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2008-12-11 04:38:51 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2008-12-11 04:38:51 +0000
commit3a94beb958a609c953a03d37b3ecf553c5782803 (patch)
tree93373de73733d2ba8adc1a374298a15c66dd9f46 /libsylph/mbox.c
parent1530b222bda57a53255e31784c0f3357a0af3829 (diff)
renamed/removed MSGBUFSIZE.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2091 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph/mbox.c')
-rw-r--r--libsylph/mbox.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libsylph/mbox.c b/libsylph/mbox.c
index 17511697..34aad016 100644
--- a/libsylph/mbox.c
+++ b/libsylph/mbox.c
@@ -42,8 +42,6 @@
#include "account.h"
#include "utils.h"
-#define MSGBUFSIZE 8192
-
#define FPUTS_TO_TMP_ABORT_IF_FAIL(s) \
{ \
if (fputs(s, tmp_fp) == EOF) { \
@@ -69,7 +67,7 @@ gint proc_mbox_full(FolderItem *dest, const gchar *mbox,
gboolean filter_junk)
{
FILE *mbox_fp;
- gchar buf[MSGBUFSIZE], from_line[MSGBUFSIZE];
+ gchar buf[BUFFSIZE], from_line[BUFFSIZE];
gchar *tmp_file;
gint msgs = 0;