aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/common/include.am2
-rw-r--r--src/ext/README7
-rw-r--r--src/ext/include.am2
-rw-r--r--src/ext/strlcat.c (renamed from src/common/strlcat.c)0
-rw-r--r--src/ext/strlcpy.c (renamed from src/common/strlcpy.c)0
5 files changed, 9 insertions, 2 deletions
diff --git a/src/common/include.am b/src/common/include.am
index 7299a47afb..0fdc72057f 100644
--- a/src/common/include.am
+++ b/src/common/include.am
@@ -47,8 +47,6 @@ COMMONHEADERS = \
src/common/memarea.h \
src/common/mempool.h \
src/common/procmon.h \
- src/common/strlcat.c \
- src/common/strlcpy.c \
src/common/torgzip.h \
src/common/torint.h \
src/common/torlog.h \
diff --git a/src/ext/README b/src/ext/README
index 2be58d4f45..2c303c1069 100644
--- a/src/ext/README
+++ b/src/ext/README
@@ -4,6 +4,13 @@ OpenBSD_malloc_Linux.c:
The OpenBSD malloc implementation, ported to Linux. Used only when
--enable-openbsd-malloc is passed to the configure script.
+strlcat.c
+strlcpy.c
+
+ Implementations of strlcat and strlcpy, the more sane replacements
+ for strcat and strcpy. These are nonstandard, and some libc
+ implementations refuse to add them for religious reasons.
+
eventdns.[ch]
A fork of Libevent's DNS implementation, used by Tor when Libevent
diff --git a/src/ext/include.am b/src/ext/include.am
index 1d5613406b..fa9ee94020 100644
--- a/src/ext/include.am
+++ b/src/ext/include.am
@@ -7,6 +7,8 @@ EXTHEADERS = \
src/ext/ht.h \
src/ext/eventdns.h \
src/ext/tinytest.h \
+ src/ext/strlcat.c \
+ src/ext/strlcpy.c \
src/ext/tinytest_macros.h
noinst_HEADERS+= $(EXTHEADERS)
diff --git a/src/common/strlcat.c b/src/ext/strlcat.c
index 316733bccc..316733bccc 100644
--- a/src/common/strlcat.c
+++ b/src/ext/strlcat.c
diff --git a/src/common/strlcpy.c b/src/ext/strlcpy.c
index 9fc47903a1..9fc47903a1 100644
--- a/src/common/strlcpy.c
+++ b/src/ext/strlcpy.c