summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Makefile.am4
-rw-r--r--src/include/gnunet_strings_lib.h3
2 files changed, 5 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 1aa952a67..32a0af68f 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -10,6 +10,9 @@ if LINUX
10# All of these currently only work on GNU/Linux 10# All of these currently only work on GNU/Linux
11 LINUX_DIR = dns exit vpn gns pt 11 LINUX_DIR = dns exit vpn gns pt
12endif 12endif
13if MINGW
14 MINGW_DIR = dns vpn gns
15endif
13 16
14if HAVE_MYSQL 17if HAVE_MYSQL
15 MYSQL_DIR = mysql 18 MYSQL_DIR = mysql
@@ -53,5 +56,6 @@ SUBDIRS = \
53 mesh \ 56 mesh \
54 lockmanager \ 57 lockmanager \
55 $(LINUX_DIR) \ 58 $(LINUX_DIR) \
59 $(MINGW_DIR) \
56 integration-tests \ 60 integration-tests \
57 $(EXP_DIR) 61 $(EXP_DIR)
diff --git a/src/include/gnunet_strings_lib.h b/src/include/gnunet_strings_lib.h
index a0d261d49..b4ae27c32 100644
--- a/src/include/gnunet_strings_lib.h
+++ b/src/include/gnunet_strings_lib.h
@@ -214,8 +214,7 @@ GNUNET_STRINGS_buffer_tokenize (const char *buffer, size_t size,
214 214
215 215
216/** 216/**
217 * "man ctime_r", except for GNUnet time; also, unlike ctime, the 217 * "asctime", except for GNUnet time.
218 * return value does not include the newline character.
219 * 218 *
220 * @param t the absolute time to convert 219 * @param t the absolute time to convert
221 * @return timestamp in human-readable form 220 * @return timestamp in human-readable form