There is a problem with LYUtils.c that appeared sometime between
2.8.4dev.17 and 2.8.4dev.20. This is apparent since the URL for the
lynx.cfg file shown in the LYNXCFG:// page doesn't work under DJGPP if
the value wasn't given as an absolute URL. The problem was the
assumption that getcwd() returns a value that starts with a "/", while
the DJGPP version returns a value that starts with a drive letter (e.g.,
c:/). This should fix it.
Doug
--- lynx2-8-5/src/LYUtils.c.orig 2003-06-01 17:16:28.000000000 -0800
+++ lynx2-8-5/src/LYUtils.c 2003-06-14 14:33:28.000000000 -0800
@@ -6681,6 +6682,8 @@
if (!LYisAbsPath(source)) {
char temp[LY_MAXPATH];
Current_Dir(temp);
+ if (!LYIsHtmlSep(*temp))
+ LYAddHtmlSep(target);
StrAllocCat(*target, temp);
}
if (!LYIsHtmlSep(*leaf))
--
Doug Kaufman
Internet: [EMAIL PROTECTED]
; To UNSUBSCRIBE: Send "unsubscribe lynx-dev" to [EMAIL PROTECTED]