diff options
author | sin <sin@2f30.org> | 2014-09-17 19:50:59 +0100 |
---|---|---|
committer | sin <sin@2f30.org> | 2014-09-17 19:51:32 +0100 |
commit | e0cd01eef6b8f2d83e2ca3f4d87b015f2305b7db (patch) | |
tree | abde9a4037ab1c73bb9633543e294a4ed3ce1de4 | |
parent | 3c390f75591337768bcd95f585d41ebdc822fb1b (diff) |
Rename ratatox to ratox
-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: |