From cea5f1fe04865f49efec0cdbfafc7db69c152adf Mon Sep 17 00:00:00 2001 From: Jfreegman Date: Tue, 20 Oct 2015 22:47:11 -0400 Subject: [PATCH] Fix avatar size limit and fix comment --- misc/toxic.conf.example | 2 +- src/toxic.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/misc/toxic.conf.example b/misc/toxic.conf.example index a4bf7fd..070796a 100644 --- a/misc/toxic.conf.example +++ b/misc/toxic.conf.example @@ -66,7 +66,7 @@ tox = { // Path for downloaded files // download_path="/home/USERNAME/Downloads/"; - // Path for your avatar (file must be a .png and cannot exceed 16.3 KiB) + // Path for your avatar (file must be a .png and cannot exceed 64 KiB) // avatar_path="/home/USERNAME/Pictures/youravatar.png"; // Path for chatlogs diff --git a/src/toxic.c b/src/toxic.c index 0a0c302..6dcf558 100644 --- a/src/toxic.c +++ b/src/toxic.c @@ -1077,7 +1077,6 @@ static void parse_args(int argc, char *argv[]) } /* Looks for an old default profile data file and blocklist, and renames them to the new default names. - * Saves the old data files under the names "toxic_data.old" and "toxic_data_blocklist.old". * * Returns 0 on success. * Returns -1 on failure.