Update of /cvsroot/popfile/engine/Proxy
In directory sc8-pr-cvs1:/tmp/cvs-serv25896/Proxy
Modified Files:
POP3.pm
Log Message:
Fix bug (found in course of writing test suite... hooray) that when a RETR command failed with -ERR we would perform it twice
Index: POP3.pm
===================================================================
RCS file: /cvsroot/popfile/engine/Proxy/POP3.pm,v
retrieving revision 1.66
retrieving revision 1.67
diff -C2 -d -r1.66 -r1.67
*** POP3.pm 30 Jul 2003 23:35:03 -0000 1.66
--- POP3.pm 31 Jul 2003 14:22:42 -0000 1.67
***************
*** 416,420 ****
close RETRFILE;
print $client ".$eol";
- next;
} else {
--- 416,419 ----
***************
*** 438,443 ****
$self->flush_extra_( $mail, $client, 0 );
- next;
}
}
}
--- 437,443 ----
$self->flush_extra_( $mail, $client, 0 );
}
+
+ next;
}
}
|