string.c
changeset 4914 189e68749f37
parent 4912 0f51b47cb983
child 5101 88ee12d71503
--- a/string.c	Sat Oct 21 23:36:06 2006 +0000
+++ b/string.c	Sat Oct 21 23:36:43 2006 +0000
@@ -42,7 +42,7 @@
 	assert(dst <= last);
 	for (; *src != '\0' && dst != last; ++dst, ++src) *dst = *src;
 	*dst = '\0';
-#if 0
+#if 1
 	if (dst == last && *src != '\0') {
 		error("String too long for destination buffer");
 	}