aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNils Durner <durner@gnunet.org>2010-10-12 18:11:14 +0000
committerNils Durner <durner@gnunet.org>2010-10-12 18:11:14 +0000
commit7bd385f7c57cfc27a3aeafedc8c9787774124ca3 (patch)
treed9e48dbf88bec0b5e3c953b2c53f71d913f72736
parent23d973765917886c20f19b1a5b8257b442ce20bc (diff)
downloadgnunet-7bd385f7c57cfc27a3aeafedc8c9787774124ca3.tar.gz
gnunet-7bd385f7c57cfc27a3aeafedc8c9787774124ca3.zip
fix PATH_SEPARATOR
-rw-r--r--src/include/plibc.h4
1 files changed, 2 insertions, 2 deletions
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 @@
22 * @brief PlibC header 22 * @brief PlibC header
23 * @attention This file is usually not installed under Unix, 23 * @attention This file is usually not installed under Unix,
24 * so ship it with your application 24 * so ship it with your application
25 * @version $Revision: 67 $ 25 * @version $Revision: 69 $
26 */ 26 */
27 27
28#ifndef _PLIBC_H_ 28#ifndef _PLIBC_H_
@@ -564,7 +564,7 @@ char *strcasestr(const char *haystack_start, const char *needle_start);
564#else 564#else
565 #define DIR_SEPARATOR '\\' 565 #define DIR_SEPARATOR '\\'
566 #define DIR_SEPARATOR_STR "\\" 566 #define DIR_SEPARATOR_STR "\\"
567 #define PATH_SEPARATOR ':' 567 #define PATH_SEPARATOR ';'
568 #define PATH_SEPARATOR_STR ";" 568 #define PATH_SEPARATOR_STR ";"
569 #define NEWLINE "\r\n" 569 #define NEWLINE "\r\n"
570 570