From: Nils Durner Date: Tue, 12 Oct 2010 18:11:14 +0000 (+0000) Subject: fix PATH_SEPARATOR X-Git-Tag: initial-import-from-subversion-38251~20068 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7bd385f7c57cfc27a3aeafedc8c9787774124ca3;p=oweals%2Fgnunet.git fix PATH_SEPARATOR --- diff --git a/src/include/plibc.h b/src/include/plibc.h index 0ca2ec274..4e3204c98 100644 --- a/src/include/plibc.h +++ b/src/include/plibc.h @@ -22,7 +22,7 @@ * @brief PlibC header * @attention This file is usually not installed under Unix, * so ship it with your application - * @version $Revision: 67 $ + * @version $Revision: 69 $ */ #ifndef _PLIBC_H_ @@ -564,7 +564,7 @@ char *strcasestr(const char *haystack_start, const char *needle_start); #else #define DIR_SEPARATOR '\\' #define DIR_SEPARATOR_STR "\\" - #define PATH_SEPARATOR ':' + #define PATH_SEPARATOR ';' #define PATH_SEPARATOR_STR ";" #define NEWLINE "\r\n"