diff --git a/darlene.c b/fctelnet.c similarity index 94% rename from darlene.c rename to fctelnet.c index 1f555a3..25b3a97 100644 --- a/darlene.c +++ b/fctelnet.c @@ -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; diff --git a/makefile b/makefile index 8a12d0b..b1789bc 100644 --- a/makefile +++ b/makefile @@ -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