nasmlib: fix MacOS classic catsep definition

Correct the definition for MacOS classic "catsep" in nasm_catfile().
Also put in a stern comment that this function doesn't handle
filenames with path components.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
H. Peter Anvin 2017-04-23 23:11:12 -07:00
parent 11a07a7319
commit d00d8c6ac3

View File

@ -55,7 +55,7 @@
#elif defined(Macintosh) /* MacOS classic? */
# define separators ":"
# define curdir ":"
# define catsep ":"
# define catsep ':'
# define cleandirend ":"
# define leaveonclean 0
# define leave_leading 1
@ -137,7 +137,11 @@ char *nasm_dirname(const char *path)
return nasm_strndup(path, p-path);
}
/* Concatenate a directory path and a filename */
/*
* Concatenate a directory path and a filename. Note that this function
* currently does NOT handle the case where file itself contains
* directory components (except on Unix platforms, because it is trivial.)
*/
char *nasm_catfile(const char *dir, const char *file)
{
#ifndef catsep