remove log when it's useless
authorColin Leroy <colin@colino.net>
Fri, 9 Jul 2004 12:26:07 +0000 (12:26 +0000)
committerColin Leroy <colin@colino.net>
Fri, 9 Jul 2004 12:26:07 +0000 (12:26 +0000)
ChangeLog-gtk2.claws
PATCHSETS
configure.ac
src/pop.c

index 98421e2b1ad469d5ec8dbaae821cc575b41aba39..9033ddd020db329cb79ea5fd80a695f026f80dcf 100644 (file)
@@ -1,3 +1,10 @@
+2004-07-09 [colin]     0.9.11cvs17.19
+
+       * src/pop.c
+               Don't log "Skipping message" if 
+               we're going to TOP it two lines
+               later
+
 2004-07-09 [colin]     0.9.11cvs17.18
 
        * src/messageview.c
index 0a51e33a81070374612dfd6942d50faec6e7518a..ee5ab81fc9c4c97683a658b62e60cac0c46c4d7a 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
@@ -12,3 +12,4 @@
 ( cvs diff -u -r 1.94.2.11 -r 1.94.2.12 src/messageview.c; cvs diff -u -r 1.5.2.3 -r 1.5.2.4 src/noticeview.c; cvs diff -u -r 1.3.8.1 -r 1.3.8.2 src/noticeview.h; cvs diff -u -r 1.56.2.5 -r 1.56.2.6 src/pop.c; cvs diff -u -r 1.17.2.4 -r 1.17.2.5 src/pop.h; ) > 0.9.11cvs17.16.patchset
 ( cvs diff -u -r 1.56.2.6 -r 1.56.2.7 src/pop.c; cvs diff -u -r 1.94.2.12 -r 1.94.2.13 src/messageview.c; ) > 0.9.11cvs17.17.patchset
 ( cvs diff -u -r 1.94.2.13 -r 1.94.2.14 src/messageview.c; ) > 0.9.11cvs17.18.patchset
+( cvs diff -u -r 1.56.2.7 -r 1.56.2.8 src/pop.c; ) > 0.9.11cvs17.19.patchset
index 3c04d2952f1cafed63bdee33e79e0bdbfcff5ccd..6ebe746e1fe6d66af2f30751311234fa7e1ce2cb 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=9
 MICRO_VERSION=11
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=17.18
+EXTRA_VERSION=17.19
 EXTRA_RELEASE=
 
 if test \( $EXTRA_VERSION -eq 0 \) -o \( "x$EXTRA_RELEASE" != "x" \); then
index b78a12aaa01bbb830144d5b99198224464ea3097..8b4527a21c95ab39c07df2529907caa279752a40 100644 (file)
--- a/src/pop.c
+++ b/src/pop.c
@@ -987,16 +987,15 @@ static Pop3State pop3_lookup_next(Pop3Session *session)
                }
 
                if (size_limit_over) {
-                       log_message
-                               (_("POP3: Skipping message %d (%d bytes)\n"),
-                                  session->cur_msg, size);
-
                        if (!msg->received && msg->partial_recv != 2) {
                                pop3_top_send(session, ac->size_limit);
                                return POP3_TOP;
                        } else if (msg->partial_recv == 2) {
                                break;
                        }
+                       log_message
+                               (_("POP3: Skipping message %d (%d bytes)\n"),
+                                  session->cur_msg, size);
                }
                
                if (size == 0 || msg->received || size_limit_over) {