Update of /cvsroot/netmail/netmail
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20247
Modified Files:
hashcash.java
Log Message:
Forgot to check if there were any remote users.
Index: hashcash.java
===================================================================
RCS file: /cvsroot/netmail/netmail/hashcash.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- hashcash.java 2 Aug 2004 00:04:30 -0000 1.1
+++ hashcash.java 2 Aug 2004 22:30:40 -0000 1.2
@@ -151,7 +151,7 @@
to.push(s.split(" ")[1]);
}
}
-
+ if (to.empty()) process = false;
PrintStream out = new PrintStream(sock.getOutputStream());
int header = 0;
if (process) {
|