From 331dc1d0ed58cf3317c56b4163fa0b5706450743 Mon Sep 17 00:00:00 2001 From: andris9 Date: Wed, 15 Sep 2010 11:13:13 +0300 Subject: [PATCH] another type fix --- n3.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/n3.js b/n3.js index cfa2f30..bde5906 100644 --- a/n3.js +++ b/n3.js @@ -176,7 +176,7 @@ var N3 = { * Creates a dedicated server instance for every separate connection. Run by * N3.createInstance after a user tries to connect to the selected port. **/ -N3.POP3Server: function(socket, server_name, auth, MsgStore, credentials, useTLS){ +N3.POP3Server = function(socket, server_name, auth, MsgStore, credentials, useTLS){ this.server_name = server_name || N3.server_name; this.socket = socket; this.state = N3.States.AUTHENTICATION;