summaryrefslogtreecommitdiffstats
path: root/mbbsd/mbbsd.c
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-05-18 15:31:09 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-05-18 15:31:09 +0800
commit2502fc38a34eaf5a146e502a0e87eccfe3283ed9 (patch)
tree677e4bb5bf0dea45abf6baf48d1ad18bed46e43e /mbbsd/mbbsd.c
parent4c5f4c5f248509cd1e46ef308d52be1804181411 (diff)
downloadpttbbs-2502fc38a34eaf5a146e502a0e87eccfe3283ed9.tar
pttbbs-2502fc38a34eaf5a146e502a0e87eccfe3283ed9.tar.gz
pttbbs-2502fc38a34eaf5a146e502a0e87eccfe3283ed9.tar.bz2
pttbbs-2502fc38a34eaf5a146e502a0e87eccfe3283ed9.tar.lz
pttbbs-2502fc38a34eaf5a146e502a0e87eccfe3283ed9.tar.xz
pttbbs-2502fc38a34eaf5a146e502a0e87eccfe3283ed9.tar.zst
pttbbs-2502fc38a34eaf5a146e502a0e87eccfe3283ed9.zip
warning free
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@863 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/mbbsd.c')
-rw-r--r--mbbsd/mbbsd.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/mbbsd/mbbsd.c b/mbbsd/mbbsd.c
index b9999eb4..9498f963 100644
--- a/mbbsd/mbbsd.c
+++ b/mbbsd/mbbsd.c
@@ -1,4 +1,4 @@
-/* $Id: mbbsd.c,v 1.78 2003/05/15 23:54:07 victor Exp $ */
+/* $Id: mbbsd.c,v 1.79 2003/05/18 07:31:09 in2 Exp $ */
#include "bbs.h"
#define SOCKET_QLEN 4
@@ -1004,17 +1004,21 @@ telnet_init()
IAC, WILL, TELOPT_SGA
};
char *cmd;
- int n, len, rset;
+ int n, len;
struct timeval to;
char buf[64];
+ fd_set ReadSet, r;
+
+ FD_ZERO(&ReadSet);
+ FD_SET(0, &ReadSet);
for (n = 0, cmd = svr; n < 4; n++) {
len = (n == 1 ? 6 : 3);
write(0, cmd, len);
cmd += len;
to.tv_sec = 3;
to.tv_usec = 0;
- rset = 1;
- if (select(1, (fd_set *) & rset, NULL, NULL, &to) > 0)
+ r = ReadSet;
+ if (select(1, &r, NULL, NULL, &to) > 0)
recv(0, buf, sizeof(buf), 0);
}
}