From d6efc2451b025f596253032b5547c974cf1f515f Mon Sep 17 00:00:00 2001 From: hiro Date: Sun, 5 Feb 2006 13:11:13 +0000 Subject: fixed wrong status display at receiving on *BSD systems. git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@975 ee746299-78ed-0310-b773-934348b2243d --- libsylph/pop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libsylph/pop.c') diff --git a/libsylph/pop.c b/libsylph/pop.c index 7988ef48..8b110b3e 100644 --- a/libsylph/pop.c +++ b/libsylph/pop.c @@ -187,7 +187,7 @@ static gint pop3_getrange_stat_send(Pop3Session *session) static gint pop3_getrange_stat_recv(Pop3Session *session, const gchar *msg) { - if (sscanf(msg, "%d %Ld", &session->count, &session->total_bytes) != 2) { + if (sscanf(msg, "%d %lld", &session->count, &session->total_bytes) != 2) { log_warning(_("POP3 protocol error\n")); session->error_val = PS_PROTOCOL; return -1; -- cgit v1.2.3