mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-22 22:13:02 +01:00
No longer assumes Minix/BSD/AIX users actually use Macs when assigning a default name
This commit is contained in:
parent
8f244f2b6d
commit
4fe94ca403
4
main.c
4
main.c
@ -76,8 +76,10 @@ static Messenger *init_tox()
|
|||||||
setname(m, (uint8_t *) "Cool guy", sizeof("Cool guy"));
|
setname(m, (uint8_t *) "Cool guy", sizeof("Cool guy"));
|
||||||
#elif win32
|
#elif win32
|
||||||
setname(m, (uint8_t *) "I should install GNU/Linux", sizeof("I should install GNU/Linux"));
|
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
|
#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
|
#endif
|
||||||
return m;
|
return m;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user