Fixed username detection bug
This commit is contained in:
parent
3fe32125a3
commit
25a6478553
|
@ -258,7 +258,7 @@ Oneshot::Oneshot(const RGSSThreadData &threadData)
|
|||
struct passwd *pwd = getpwuid(getuid());
|
||||
if (pwd)
|
||||
{
|
||||
if (pwd->pw_gecos && pwd->pw_gecos[0] != ',')
|
||||
if (pwd->pw_gecos && pwd->pw_gecos[0] && pwd->pw_gecos[0] != ',')
|
||||
{
|
||||
//Get the user's full name
|
||||
int comma = 0;
|
||||
|
|
Loading…
Reference in New Issue