*** empty log message ***
authorMatthew Mondor <mmondor@pulsar-zone.net>
Fri, 15 Jul 2005 14:20:08 +0000 (14:20 +0000)
committerMatthew Mondor <mmondor@pulsar-zone.net>
Fri, 15 Jul 2005 14:20:08 +0000 (14:20 +0000)
tests/js-test/js/httpd/httpd.js

index 34dd7e7..e62702b 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: httpd.js,v 1.65 2005/07/15 14:17:56 mmondor Exp $ */
+/* $Id: httpd.js,v 1.66 2005/07/15 14:20:08 mmondor Exp $ */
 
 /*
  * Copyright (c) 2005, Matthew Mondor
@@ -59,7 +59,7 @@
  * Server identification
  */
 SERVER_VERSION                 = 'mmondor_js_httpd/0.0.1 (NetBSD)';
-SERVER_CVSID   = '$Id: httpd.js,v 1.65 2005/07/15 14:17:56 mmondor Exp $';
+SERVER_CVSID   = '$Id: httpd.js,v 1.66 2005/07/15 14:20:08 mmondor Exp $';
 
 
 
@@ -93,7 +93,7 @@ function file_read(file)
                } else
                        fd = file;
                for (;;) {
-                       data = fd.read(16384);
+                       data = fd.read(65536);
                        if (data.length == 0)
                                break;
                        contents += data;