Fix silly bug
This commit is contained in:
parent
98c41c5ec3
commit
d03ed16507
2
bbs.c
2
bbs.c
@ -156,7 +156,7 @@ void s_putstring(char *c) {
|
||||
int i;
|
||||
if (sshBBS) {
|
||||
for (i=0;i<strlen(c);i++) {
|
||||
putchar(c);
|
||||
putchar(c[i]);
|
||||
}
|
||||
} else {
|
||||
write(gSocket, c, strlen(c));
|
||||
|
Reference in New Issue
Block a user