summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-01-19 21:24:14 +0800
committerkcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-01-19 21:24:14 +0800
commitd05f3cb0524d9e170cd4145d9a6043933f19d4e8 (patch)
tree531a7223153cb116e1d57d0092a2ad993d974287
parent7230c889931d6f92e0dc18906f596811c11f8141 (diff)
downloadpttbbs-d05f3cb0524d9e170cd4145d9a6043933f19d4e8.tar
pttbbs-d05f3cb0524d9e170cd4145d9a6043933f19d4e8.tar.gz
pttbbs-d05f3cb0524d9e170cd4145d9a6043933f19d4e8.tar.bz2
pttbbs-d05f3cb0524d9e170cd4145d9a6043933f19d4e8.tar.lz
pttbbs-d05f3cb0524d9e170cd4145d9a6043933f19d4e8.tar.xz
pttbbs-d05f3cb0524d9e170cd4145d9a6043933f19d4e8.tar.zst
pttbbs-d05f3cb0524d9e170cd4145d9a6043933f19d4e8.zip
add some assert() code, but disable first.
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@636 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--pttbbs/include/bbs.h1
-rw-r--r--pttbbs/mbbsd/Makefile5
-rw-r--r--pttbbs/mbbsd/io.c3
3 files changed, 7 insertions, 2 deletions
diff --git a/pttbbs/include/bbs.h b/pttbbs/include/bbs.h
index a83cd84f..87b038a7 100644
--- a/pttbbs/include/bbs.h
+++ b/pttbbs/include/bbs.h
@@ -4,6 +4,7 @@
#include <stdio.h>
#include <string.h>
+#include <assert.h>
#include <stdlib.h>
#include <stdarg.h>
#include <setjmp.h>
diff --git a/pttbbs/mbbsd/Makefile b/pttbbs/mbbsd/Makefile
index 2a206efe..1cd74870 100644
--- a/pttbbs/mbbsd/Makefile
+++ b/pttbbs/mbbsd/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.15 2003/01/16 12:27:54 kcwu Exp $
+# $Id: Makefile,v 1.16 2003/01/19 13:24:14 kcwu Exp $
# 訂義基本初值
BBSHOME?= $(HOME)
@@ -12,6 +12,9 @@ LIBS+= -lcrypt
# 在 CFLAGS內加入定義 COMPILE_TIME
CFLAGS+= "-DCOMPILE_TIME=\"`date`\""
+# 稍後再 enable assert()
+CFLAGS+= -DNDEBUG
+
# FreeBSD特有的環境
CFLAGS_FreeBSD= -DHAVE_SETPROCTITLE -DFreeBSD
LDFLAGS_FreeBSD=
diff --git a/pttbbs/mbbsd/io.c b/pttbbs/mbbsd/io.c
index 9b34bd12..1629f7cb 100644
--- a/pttbbs/mbbsd/io.c
+++ b/pttbbs/mbbsd/io.c
@@ -1,4 +1,4 @@
-/* $Id: io.c,v 1.26 2003/01/15 09:41:19 in2 Exp $ */
+/* $Id: io.c,v 1.27 2003/01/19 13:24:14 kcwu Exp $ */
#include "bbs.h"
#if defined(linux)
@@ -37,6 +37,7 @@ output(char *s, int len)
{
/* Invalid if len >= OBUFSIZE */
+ assert(len<OBUFSIZE);
if (obufsize + len > OBUFSIZE) {
write(1, outbuf, obufsize);
obufsize = 0;