From d0786e408d07d0e4dbd6c98b23522399e5b1b34a Mon Sep 17 00:00:00 2001 From: sin Date: Sat, 13 Sep 2014 16:32:30 +0100 Subject: text_out should be in the same dir as text_in Thanks unknown person. --- ratatox.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'ratatox.c') diff --git a/ratatox.c b/ratatox.c index 52f9343..1abe4f4 100644 --- a/ratatox.c +++ b/ratatox.c @@ -166,8 +166,7 @@ cb_friend_message(Tox *tox, int32_t fid, const uint8_t *data, uint16_t len, void TAILQ_FOREACH(f, &friendhead, entry) { if (f->fid == fid) { - snprintf(path, sizeof(path), "%s:%d/text_out", - f->namestr, f->fid); + snprintf(path, sizeof(path), "%s/text_out", f->idstr); fp = fopen(path, "a"); if (!fp) { perror("fopen"); -- cgit v1.2.3