From 433d4686cf2495c33aee9f82e297039713b079b1 Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Wed, 21 Aug 2013 20:09:18 -0400 Subject: [PATCH] rename --- darlene.c => fctelnet.c | 2 +- makefile | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) rename darlene.c => fctelnet.c (94%) 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