diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-03-25 20:42:50 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-03-25 20:42:50 +0000 |
commit | a9bde38b55cc390bd7d80811ba48647e16eb4cc6 (patch) | |
tree | c8e0f81482c0dd57648a9e4a2dabc4eadea1a55c /src/inspstring.cpp | |
parent | 5174091b75a311a824103d8e8a095ce95db63f38 (diff) |
Fixed inspstring strlcpy and strlcat
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@907 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspstring.cpp')
-rw-r--r-- | src/inspstring.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspstring.cpp b/src/inspstring.cpp index 7b9624fcf..c4829ffbb 100644 --- a/src/inspstring.cpp +++ b/src/inspstring.cpp @@ -28,7 +28,7 @@ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef HAVE_STRLCPY +#ifndef HAS_STRLCPY size_t strlcat(char *dst, const char *src, size_t siz) { char *d = dst; |