diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/LYIcon.rc | 10 | ||||
-rw-r--r-- | src/LYUtils.c | 6 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/LYIcon.rc b/src/LYIcon.rc index fa1149d2..551a308a 100644 --- a/src/LYIcon.rc +++ b/src/LYIcon.rc @@ -1,12 +1,12 @@ -// $LynxId: LYIcon.rc,v 1.41 2019/05/26 00:22:19 tom Exp $ +// $LynxId: LYIcon.rc,v 1.42 2019/08/17 01:07:24 tom Exp $ #include <windows.h> 100 ICON "../samples/lynx.ico" VS_VERSION_INFO VERSIONINFO -FILEVERSION 2,9,0,1002 -PRODUCTVERSION 2,9,0,1002 +FILEVERSION 2,9,0,1003 +PRODUCTVERSION 2,9,0,1003 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK FILEFLAGS 0 FILEOS VOS_NT_WINDOWS32 @@ -19,12 +19,12 @@ BEGIN BEGIN VALUE "CompanyName", "https://invisible-island.net/lynx" VALUE "FileDescription", "Lynx - web browser" - VALUE "FileVersion", "2.9.0.1002" + VALUE "FileVersion", "2.9.0.1003" VALUE "InternalName", "Lynx" VALUE "LegalCopyright", "©1997-2019 Thomas E. Dickey" VALUE "OriginalFilename", "lynx.exe" VALUE "ProductName", "Lynx - web browser" - VALUE "ProductVersion", "2.9.0.1002" + VALUE "ProductVersion", "2.9.0.1003" END END BLOCK "VarFileInfo" diff --git a/src/LYUtils.c b/src/LYUtils.c index b41c95b3..c6c6b06a 100644 --- a/src/LYUtils.c +++ b/src/LYUtils.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYUtils.c,v 1.293 2018/12/26 01:23:05 tom Exp $ + * $LynxId: LYUtils.c,v 1.294 2019/08/16 22:44:10 tom Exp $ */ #include <HTUtils.h> #include <HTTCP.h> @@ -4955,7 +4955,7 @@ void LYTrimRelFromAbsPath(char *path) /* * Simplify the path and then do any necessary trimming. - FM */ - HTSimplify(path); + HTSimplify(path, TRUE); cp = path; while (cp[1] == '.') { if (cp[2] == '\0') { @@ -5362,7 +5362,7 @@ BOOLEAN LYPathOffHomeOK(char *fbuffer, /* * Simplify it. - FM */ - HTSimplify(cp); + HTSimplify(cp, FALSE); /* * Check if it has a pointless "./". - FM |