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)
{
// it was an escped FF
// it was an escaped FF
if (c == IAC)
{
buffer[cnt++] = IAC;

View File

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