*** empty log message ***
authorMatthew Mondor <mmondor@pulsar-zone.net>
Wed, 17 Jan 2007 17:16:20 +0000 (17:16 +0000)
committerMatthew Mondor <mmondor@pulsar-zone.net>
Wed, 17 Jan 2007 17:16:20 +0000 (17:16 +0000)
mmsoftware/js/js-sh/app/httpd/httpd.js

index 336777a..b62da33 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: httpd.js,v 1.51 2007/01/17 17:03:03 mmondor Exp $ */
+/* $Id: httpd.js,v 1.52 2007/01/17 17:16:20 mmondor Exp $ */
 
 /*
  * Copyright (c) 2005-2006, Matthew Mondor
@@ -82,7 +82,7 @@
  * Server identification
  */
 const SERVER_VERSION = 'mmondor_js_httpd/0.2.1 (NetBSD)';
-const SERVER_CVSID = '$Id: httpd.js,v 1.51 2007/01/17 17:03:03 mmondor Exp $';
+const SERVER_CVSID = '$Id: httpd.js,v 1.52 2007/01/17 17:16:20 mmondor Exp $';
 
 
 
@@ -1738,7 +1738,7 @@ PollSet.prototype = {
        remove: function(fd)
        {
 
-               if (fd.fdidx > this.min)
+               if (fd.fdidx >= this.min)
                        delete this.set[fd.fdidx];
        },