summaryrefslogtreecommitdiffstats
path: root/user.c
diff options
context:
space:
mode:
authorFreeArtMan <dos21h@gmail.com>2015-01-24 19:43:28 +0900
committerFreeArtMan <dos21h@gmail.com>2015-01-24 19:43:28 +0900
commit3090282601248d3ce5f91cbddeb450d744b27472 (patch)
tree30125025d0bb370b886700548e5be25ba0fa0d62 /user.c
parentc49166a323b9a1bb777e949c0bcbedc7eceab3cd (diff)
downloadmicrobbs-3090282601248d3ce5f91cbddeb450d744b27472.tar.gz
microbbs-3090282601248d3ce5f91cbddeb450d744b27472.zip
Fixed bug with drawing last line in motd. New motd
Diffstat (limited to 'user.c')
-rw-r--r--user.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/user.c b/user.c
index 512a264..0c0ac94 100644
--- a/user.c
+++ b/user.c
@@ -1,5 +1,7 @@
#include "user.h"
+#ifdef CONFIG_LOGIN
+
int bbs_login( term_screen *ts )
{
int ret=0;
@@ -245,3 +247,4 @@ int bbs_user_get_status( bbs_user *bu )
return BBS_USER_GUEST;
}
+#endif