This commit is contained in:
Kelvin Sherlock 2013-08-21 20:09:18 -04:00
parent 5be6190fab
commit 433d4686cf
2 changed files with 4 additions and 4 deletions

View File

@ -171,7 +171,7 @@ static int cnt;
if (state == SB_IAC) if (state == SB_IAC)
{ {
// it was an escped FF // it was an escaped FF
if (c == IAC) if (c == IAC)
{ {
buffer[cnt++] = IAC; buffer[cnt++] = IAC;

View File

@ -1,5 +1,5 @@
PROG = darlene PROG = fctelnet
OBJS = darlene.o vt100.o ansi.o chars.o marinetti.o display.o OBJS = fctelnet.o vt100.o ansi.o chars.o marinetti.o display.o
OPTIMIZE *= 79 OPTIMIZE *= 79
@ -11,7 +11,7 @@ $(PROG): $(OBJS)
$(CC) $(CFLAGS) $(OBJS) -o $@ $(CC) $(CFLAGS) $(OBJS) -o $@
darlene.o: darlene.c Marinetti.h fctelnet.o: fctelnet.c marinetti.h
vt100.o: vt100.c vt100.o: vt100.c
ansi.o: ansi.asm ansi.o: ansi.asm
chars.o: chars.asm chars.o: chars.asm