Try to fix getchar

This commit is contained in:
Andrew Pamment 2016-08-07 12:37:07 +10:00
parent 82e4ba36e5
commit c28813fd79

2
bbs.c
View File

@ -204,7 +204,7 @@ char s_getchar() {
do {
if (sshBBS) {
len = read(stdin, &c, 1);
c = getchar();
} else {
len = read(gSocket, &c, 1);
}