[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
lynx-dev Re: HTAccess exit(-1): LYNXIMGMAP broken in dev15
From: |
Leonid Pauzner |
Subject: |
lynx-dev Re: HTAccess exit(-1): LYNXIMGMAP broken in dev15 |
Date: |
Sun, 7 Feb 1999 17:46:12 +0300 (MSK) |
7-Feb-99 16:46 I wrote:
> I found out that dev15 now crash on USEMAP: with exit message:
> **** HTAccess: Socket or file number returned by obsolete load routine!
> **** HTAccess: Internal software error. Please mail to lynx-dev.sig.net!
> **** HTAccess: Status returned was: 29997
^^^^^
Sorry, it was a dependencies problem, fixed by make clean.
few object files were not updated.
Index: CHANGES
...
+* changed more status codes in HTUtils.h to libwww5-like values - KW
Index: WWW/Library/Implementation/HTUtils.h
--- 2.8.2dev.14/WWW/Library/Implementation/HTUtils.h Wed Dec 16 14:56:42 1998
+++ 2.8.2dev.15/WWW/Library/Implementation/HTUtils.h Thu Jan 28 09:31:29 1999
@@ -311,10 +311,13 @@
Sucess (>=0) and failure (<0) codes
+Some of the values are chosen to be HTTP-like, but status return values
+are generally not the response status from any specific protocol.
+
*/
-#define HT_REDIRECTING 29996
-#define HT_LOADED 29997 /* Instead of a socket */
+#define HT_REDIRECTING 399
+#define HT_LOADED 200 /* Instead of a socket */
#define HT_PARTIAL_CONTENT 206 /* Partial Content */
#define HT_INTERRUPTED -29998
#define HT_NOT_LOADED -29999