From 5350633e1a904d8238b95eb18a77a6df85218d59 Mon Sep 17 00:00:00 2001 From: Michiel Broek Date: Sun, 11 Feb 2007 14:52:47 +0000 Subject: [PATCH] Some debuglog cleanup --- ChangeLog | 3 ++ mbsebbs/mbsebbs.c | 9 +--- mbsebbs/openport.c | 106 +-------------------------------------------- 3 files changed, 6 insertions(+), 112 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8699f531..1d449c09 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,9 @@ v0.91.3 11-Feb-2007 mbtask: Some code cleanup. + mbsebbs: + Some debuglog cleanup. + v0.91.2 14-Jan-2007 - 11-Feb-2007 diff --git a/mbsebbs/mbsebbs.c b/mbsebbs/mbsebbs.c index 60e9a946..0456f269 100644 --- a/mbsebbs/mbsebbs.c +++ b/mbsebbs/mbsebbs.c @@ -4,7 +4,7 @@ * Purpose ...............: Main startup * ***************************************************************************** - * Copyright (C) 1997-2006 + * Copyright (C) 1997-2007 * * Michiel Broek FIDO: 2:280/2802 * Beekmansbos 10 @@ -139,7 +139,7 @@ int main(int argc, char **argv) PUTSTR((char *)"\x1b[H"); /* home cursor */ PUTSTR((char *)"\xC"); /* clear screen (in case not ANSI) */ PUTSTR((char *)"\r"); /* Move cursor left (in case previous char printed) */ - PUTSTR((char *)"Loading MBSE BBS ..."); /* Let the use think something is happening */ + PUTSTR((char *)"Loading MBSE BBS ..."); /* Let the user think something is happening */ Enter(1); memset(&temp, 0, sizeof(temp)); @@ -370,11 +370,6 @@ int main(int argc, char **argv) Enter(1); } - /* - * Some debugging for me - */ - Syslog('b', "setlocale(LC_ALL, NULL) returns \"%s\"", printable(setlocale(LC_ALL, NULL), 0)); - snprintf(sMailbox, 21, "mailbox"); colour(LIGHTGRAY, BLACK); user(); diff --git a/mbsebbs/openport.c b/mbsebbs/openport.c index 13a1745c..40c318c8 100644 --- a/mbsebbs/openport.c +++ b/mbsebbs/openport.c @@ -3,7 +3,7 @@ * $Id$ * ***************************************************************************** - * Copyright (C) 1997-2006 + * Copyright (C) 1997-2007 * * Michiel Broek FIDO: 2:280/2802 * Beekmansbos 10 @@ -205,109 +205,6 @@ int io_mode(int fd, int n) case 3: if (!did0) { tcgetattr(fd,&oldtty); -#ifdef __linux__ - Syslog('t', "iflag%s%s%s%s%s%s%s%s%s%s%s%s%s", - (oldtty.c_iflag & IGNBRK) ? " IGNBRK":"", - (oldtty.c_iflag & BRKINT) ? " BRKINT":"", - (oldtty.c_iflag & IGNPAR) ? " IGNPAR":"", - (oldtty.c_iflag & PARMRK) ? " PARMRK":"", - (oldtty.c_iflag & INPCK) ? " INPCK":"", - (oldtty.c_iflag & ISTRIP) ? " ISTRIP":"", - (oldtty.c_iflag & INLCR) ? " INLCR":"", - (oldtty.c_iflag & IGNCR) ? " IGNCR":"", - (oldtty.c_iflag & ICRNL) ? " ICRNL":"", - (oldtty.c_iflag & IXON) ? " IXON":"", - (oldtty.c_iflag & IXOFF) ? " IXOFF":"", - (oldtty.c_iflag & IXANY) ? " IXANY":"", - (oldtty.c_iflag & IMAXBEL)? " IMAXBEL":""); - Syslog('t', "oflag%s%s%s%s%s", - (oldtty.c_oflag & OPOST) ? " OPOST":"", - (oldtty.c_oflag & ONLCR) ? " ONLCR":"", - (oldtty.c_oflag & OCRNL) ? " OCRNL":"", - (oldtty.c_oflag & ONOCR) ? " ONOCR":"", - (oldtty.c_oflag & ONLRET) ? " ONLRET":""); - Syslog('t', "cflag%s%s%s%s%s%s%s%s%s%s%s", - (oldtty.c_cflag & CS5) ? " CS5":"", - (oldtty.c_cflag & CS6) ? " CS6":"", - (oldtty.c_cflag & CS7) ? " CS7":"", - (oldtty.c_cflag & CS8) ? " CS8":"", - (oldtty.c_cflag & CSTOPB) ? " CSTOPB":"", - (oldtty.c_cflag & CREAD) ? " CREAD":"", - (oldtty.c_cflag & PARENB) ? " PARENB":"", - (oldtty.c_cflag & PARODD) ? " PARODD":"", - (oldtty.c_cflag & HUPCL) ? " HUPCL":"", - (oldtty.c_cflag & CLOCAL) ? " CLOCAL":"", - (oldtty.c_cflag & CRTSCTS) ? " CRTSCTS":""); - Syslog('t', "lflag%s%s%s%s%s%s%s%s%s%s%s%s%s", - (oldtty.c_lflag & ECHOKE) ? " ECHOKE":"", - (oldtty.c_lflag & ECHOE) ? " ECHOE":"", - (oldtty.c_lflag & ECHO) ? " ECHO":"", - (oldtty.c_lflag & ECHONL) ? " ECHONL":"", - (oldtty.c_lflag & ECHOPRT)? " ECHOPRT":"", - (oldtty.c_lflag & ECHOCTL)? " ECHOCTL":"", - (oldtty.c_lflag & ISIG) ? " ISIG":"", - (oldtty.c_lflag & ICANON) ? " ICANON":"", - (oldtty.c_lflag & IEXTEN) ? " IEXTEN":"", - (oldtty.c_lflag & TOSTOP) ? " TOSTOP":"", - (oldtty.c_lflag & FLUSHO) ? " FLUSHO":"", - (oldtty.c_lflag & PENDIN) ? " PENDIN":"", - (oldtty.c_lflag & NOFLSH) ? " NOFLSH":""); -#else - Syslog('t', "iflag%s%s%s%s%s%s%s%s%s%s%s%s%s", - (oldtty.c_iflag & IGNBRK) ? " IGNBRK":"", - (oldtty.c_iflag & BRKINT) ? " BRKINT":"", - (oldtty.c_iflag & IGNPAR) ? " IGNPAR":"", - (oldtty.c_iflag & PARMRK) ? " PARMRK":"", - (oldtty.c_iflag & INPCK) ? " INPCK":"", - (oldtty.c_iflag & ISTRIP) ? " ISTRIP":"", - (oldtty.c_iflag & INLCR) ? " INLCR":"", - (oldtty.c_iflag & IGNCR) ? " IGNCR":"", - (oldtty.c_iflag & ICRNL) ? " ICRNL":"", - (oldtty.c_iflag & IXON) ? " IXON":"", - (oldtty.c_iflag & IXOFF) ? " IXOFF":"", - (oldtty.c_iflag & IXANY) ? " IXANY":"", - (oldtty.c_iflag & IMAXBEL)? " IMAXBEL":""); - Syslog('t', "oflag%s%s%s%s%s%s%s", - (oldtty.c_oflag & OPOST) ? " OPOST":"", - (oldtty.c_oflag & ONLCR) ? " ONLCR":"", - (oldtty.c_oflag & OCRNL) ? " OCRNL":"", - (oldtty.c_oflag & OXTABS) ? " OXTABS":"", - (oldtty.c_oflag & ONOEOT) ? " ONOEOT":"", - (oldtty.c_oflag & ONOCR) ? " ONOCR":"", - (oldtty.c_oflag & ONLRET) ? " ONLRET":""); - Syslog('t', "cflag%s%s%s%s%s%s%s%s%s%s%s%s%s%s", - (oldtty.c_cflag & CS5) ? " CS5":"", - (oldtty.c_cflag & CS6) ? " CS6":"", - (oldtty.c_cflag & CS7) ? " CS7":"", - (oldtty.c_cflag & CS8) ? " CS8":"", - (oldtty.c_cflag & CSTOPB) ? " CSTOPB":"", - (oldtty.c_cflag & CREAD) ? " CREAD":"", - (oldtty.c_cflag & PARENB) ? " PARENB":"", - (oldtty.c_cflag & PARODD) ? " PARODD":"", - (oldtty.c_cflag & HUPCL) ? " HUPCL":"", - (oldtty.c_cflag & CLOCAL) ? " CLOCAL":"", - (oldtty.c_cflag & CCTS_OFLOW) ? " CCTS_OFLOW":"", - (oldtty.c_cflag & CRTSCTS) ? " CRTSCTS":"", - (oldtty.c_cflag & CRTS_IFLOW) ? " CRTS_IFLOW":"", - (oldtty.c_cflag & MDMBUF) ? " MDMBUF":""); - Syslog('t', "lflag%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s", - (oldtty.c_lflag & ECHOKE) ? " ECHOKE":"", - (oldtty.c_lflag & ECHOE) ? " ECHOE":"", - (oldtty.c_lflag & ECHO) ? " ECHO":"", - (oldtty.c_lflag & ECHONL) ? " ECHONL":"", - (oldtty.c_lflag & ECHOPRT)? " ECHOPRT":"", - (oldtty.c_lflag & ECHOCTL)? " ECHOCTL":"", - (oldtty.c_lflag & ISIG) ? " ISIG":"", - (oldtty.c_lflag & ICANON) ? " ICANON":"", - (oldtty.c_lflag & ALTWERASE)? " ALTWERASE":"", - (oldtty.c_lflag & IEXTEN) ? " IEXTEN":"", - (oldtty.c_lflag & EXTPROC)? " EXTPROC":"", - (oldtty.c_lflag & TOSTOP) ? " TOSTOP":"", - (oldtty.c_lflag & FLUSHO) ? " FLUSHO":"", - (oldtty.c_lflag & NOKERNINFO)? " NOKERNINFO":"", - (oldtty.c_lflag & PENDIN) ? " PENDIN":"", - (oldtty.c_lflag & NOFLSH) ? " NOFLSH":""); -#endif } tty = oldtty; @@ -328,7 +225,6 @@ int io_mode(int fd, int n) tty.c_cc[VTIME] = 1; tcsetattr(fd,TCSADRAIN,&tty); Baudrate = getspeed(cfgetospeed(&tty)); - Syslog('t', "Baudrate = %d", Baudrate); did0 = TRUE; return 0;