From 30d2a5514efd387036720e5797e678313d688557 Mon Sep 17 00:00:00 2001 From: Sean Date: Tue, 13 May 2014 10:11:20 -0700 Subject: [PATCH 1/2] Yup --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index ba72c61..be74e14 100644 --- a/src/main.c +++ b/src/main.c @@ -172,7 +172,7 @@ static Tox *init_tox(int ipv4) #elif defined(__FreeBSD__) tox_set_name(m, (uint8_t *) "Very cool guy", strlen("Very cool guy")); #elif defined(_WIN32) - tox_set_name(m, (uint8_t *) "I should buy a Mac", strlen("I should install buy a Mac")); + tox_set_name(m, (uint8_t *) "I should insta....... buy a Mac", strlen("I should insta....... buy a Mac")); #elif defined(__APPLE__) tox_set_name(m, (uint8_t *) "Hipster", strlen("Hipster")); /* This used to users of other Unixes are hipsters */ #else From 2cf5430b85181abd554440ddf9b2cb3e51c514dc Mon Sep 17 00:00:00 2001 From: Sean Date: Tue, 13 May 2014 10:14:19 -0700 Subject: [PATCH 2/2] Fixed a "bug" --- src/main.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main.c b/src/main.c index be74e14..3f3b2e2 100644 --- a/src/main.c +++ b/src/main.c @@ -168,11 +168,9 @@ static Tox *init_tox(int ipv4) tox_callback_file_data(m, on_file_data, NULL); #ifdef __linux__ - tox_set_name(m, (uint8_t *) "Cool guy", strlen("Cool guy")); + tox_set_name(m, (uint8_t *) "I should insta... buy a Mac", strlen("I should insta... buy a Mac")); #elif defined(__FreeBSD__) tox_set_name(m, (uint8_t *) "Very cool guy", strlen("Very cool guy")); -#elif defined(_WIN32) - tox_set_name(m, (uint8_t *) "I should insta....... buy a Mac", strlen("I should insta....... buy a Mac")); #elif defined(__APPLE__) tox_set_name(m, (uint8_t *) "Hipster", strlen("Hipster")); /* This used to users of other Unixes are hipsters */ #else