fixed typos
authoradam <adam@megacz.com>
Thu, 18 Mar 2004 08:54:09 +0000 (08:54 +0000)
committeradam <adam@megacz.com>
Thu, 18 Mar 2004 08:54:09 +0000 (08:54 +0000)
darcs-hash:20040318085409-5007d-6c6ddea66f2fbf9ddbe9d60d1465f615aaf4f34d.gz

src/org/ibex/mail/Message.java
src/org/ibex/mail/protocol/SMTP.java

index e01ef8e..22d94dd 100644 (file)
@@ -136,5 +136,5 @@ public class Message {
         return ret.toString();
     }
 
-    private static final Random = new Random();
+    private static final Random random = new Random();
 }
index 970cc1d..0074285 100644 (file)
@@ -30,7 +30,7 @@ public class SMTP extends MessageProtocol {
 
     private class Incoming implements ServerRequest {
         TcpConnection conn;
-        public Request(TcpConnection conn) { this.conn = conn; conn.getSocket().setSoTimeout(5 * 60 * 1000); }
+        public Incoming(TcpConnection conn) { this.conn = conn; conn.getSocket().setSoTimeout(5 * 60 * 1000); }
         public void init() { }
 
         public boolean handleRequest() throws IOException {
@@ -111,7 +111,8 @@ public class SMTP extends MessageProtocol {
                 }                    
             
             
-            return false;  // FIXME: what does this mean?
+                return false;  // FIXME: what does this mean?
+            }
         }
     }
 }