diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2008-09-17 07:52:07 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2008-09-17 07:52:07 +0000 |
commit | db6cafdaf9a350bfda9435cfc035e00d1fd4401a (patch) | |
tree | c11643de85b0f15b355a6d794ccd7f7b3e2c2912 /libsylph | |
parent | 82849c6daf5e071c7511f8d8553bc42a099c70e5 (diff) |
remote mailbox: implemented message display.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2032 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph')
-rw-r--r-- | libsylph/pop.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libsylph/pop.c b/libsylph/pop.c index 872cfc01..25774cbd 100644 --- a/libsylph/pop.c +++ b/libsylph/pop.c @@ -76,9 +76,9 @@ void pop3_gen_send (Pop3Session *session, static void pop3_session_destroy (Session *session); -static gint pop3_write_msg_to_file (const gchar *file, - FILE *src_fp, - guint len); +gint pop3_write_msg_to_file (const gchar *file, + FILE *src_fp, + guint len); static Pop3State pop3_lookup_next (Pop3Session *session); @@ -561,7 +561,7 @@ gint pop3_write_uidl_list(Pop3Session *session) return 0; } -static gint pop3_write_msg_to_file(const gchar *file, FILE *src_fp, guint len) +gint pop3_write_msg_to_file(const gchar *file, FILE *src_fp, guint len) { FILE *fp; gchar buf[BUFFSIZE]; |