]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Fixed inspstring strlcpy and strlcat
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Fri, 25 Mar 2005 20:42:50 +0000 (20:42 +0000)
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Fri, 25 Mar 2005 20:42:50 +0000 (20:42 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@907 e03df62e-2008-0410-955e-edbf42e46eb7

include/inspstring.h
src/inspstring.cpp

index f13f098ddcfdd9ee209b16cde650f19f8d33d772..54264a3eb54acafbeb7ae1f81762bc920521717b 100644 (file)
@@ -3,7 +3,7 @@
 
 #include "inspircd_config.h"
 
-#ifndef HAVE_STRLCPY
+#ifndef HAS_STRLCPY
 size_t strlcpy(char *dst, const char *src, size_t siz);
 size_t strlcat(char *dst, const char *src, size_t siz);
 #endif
index 7b9624fcf00cda6a3b48f1ab75d40703b1867660..c4829ffbb2a4e54bf7c851527300afc152b1883a 100644 (file)
@@ -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;