Fix silly bug

This commit is contained in:
Andrew Pamment 2016-08-07 15:02:45 +10:00
parent 98c41c5ec3
commit d03ed16507

2
bbs.c
View File

@ -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));