diff options
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | config.mk | 2 | ||||
-rw-r--r-- | ratox.c (renamed from ratatox.c) | 6 |
3 files changed, 6 insertions, 6 deletions
@@ -3,7 +3,7 @@ include config.mk .POSIX: .SUFFIXES: .c .o -SRC = ratatox.c +SRC = ratox.c OBJ = $(SRC:.c=.o) BIN = $(SRC:.c=) @@ -11,7 +11,7 @@ BIN = $(SRC:.c=) all: options bin options: - @echo ratatox build options: + @echo ratox build options: @echo "CFLAGS = $(CFLAGS)" @echo "LDFLAGS = $(LDFLAGS)" @echo "CC = $(CC)" @@ -1,4 +1,4 @@ -# ratatox version +# ratox version VERSION = 0.0 # paths @@ -21,7 +21,7 @@ #include "queue.h" #define LEN(x) (sizeof (x) / sizeof *(x)) -#define DATAFILE ".ratatox.data" +#define DATAFILE ".ratox.data" struct node { const char *addr; @@ -230,7 +230,7 @@ printrat(void) printf(" \\ / \\,\n"); printf(" `+'( ( \\ )\n"); printf(" // \\ |_./\n"); - printf(" '~' '~----'\tratatox v"VERSION"\n"); + printf(" '~' '~----'\tratox v"VERSION"\n"); printf("\033[0m"); } @@ -965,7 +965,7 @@ sendfriendreq(void *data) { char *p; uint8_t id[TOX_FRIEND_ADDRESS_SIZE]; - uint8_t buf[BUFSIZ], *msg = "ratatox is awesome!"; + uint8_t buf[BUFSIZ], *msg = "ratox is awesome!"; int r; again: |