1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-03 16:27:46 +02:00

No longer assumes Minix/BSD/AIX users actually use Macs when assigning a default name

This commit is contained in:
Sean Qureshi 2013-08-18 03:44:52 -07:00
parent 8f244f2b6d
commit 4fe94ca403

4
main.c
View File

@ -76,8 +76,10 @@ static Messenger *init_tox()
setname(m, (uint8_t *) "Cool guy", sizeof("Cool guy"));
#elif win32
setname(m, (uint8_t *) "I should install GNU/Linux", sizeof("I should install GNU/Linux"));
#elif MAC_OSX
setname(m, (uint8_t *) "Hipster", sizeof("Hipster")); //This used to users of other Unixes are hipsters
#else
setname(m, (uint8_t *) "Hipster", sizeof("Hipster")); //This implies users of other Unixes are hipsters
setname(m, (uint8_t *) "Registered Minix user #4", sizeof("Registered Minix user #4"));
#endif
return m;
}