summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsin <sin@2f30.org>2014-09-17 19:50:59 +0100
committersin <sin@2f30.org>2014-09-17 19:51:32 +0100
commite0cd01eef6b8f2d83e2ca3f4d87b015f2305b7db (patch)
treeabde9a4037ab1c73bb9633543e294a4ed3ce1de4
parent3c390f75591337768bcd95f585d41ebdc822fb1b (diff)
Rename ratatox to ratox
-rw-r--r--Makefile4
-rw-r--r--config.mk2
-rw-r--r--ratox.c (renamed from ratatox.c)6
3 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 46cc224..21a5e40 100644
--- a/Makefile
+++ b/Makefile
@@ -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)"
diff --git a/config.mk b/config.mk
index a96848a..931de09 100644
--- a/config.mk
+++ b/config.mk
@@ -1,4 +1,4 @@
-# ratatox version
+# ratox version
VERSION = 0.0
# paths
diff --git a/ratatox.c b/ratox.c
index f86be84..e6ecdf2 100644
--- a/ratatox.c
+++ b/ratox.c
@@ -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: