Append a goal to TODO.

This commit is contained in:
Mid Favila 2022-08-21 18:10:26 -04:00
parent 6aa4f110ed
commit 912c653000
2 changed files with 2 additions and 1 deletions

1
TODO
View File

@ -7,3 +7,4 @@
- Remove platform-specific code.
- Implement proper preferences handling
- Implement chanop commands
- Remove okButtStartupCbk -- having different callbacks for the same button at differing times without an indicator is bad UX.

View File

@ -306,7 +306,7 @@ int main (int argc, char *argv[])
tempName = getenv("LOGNAME");
if (strlen(tempName) > MAX_NAME_LEN || tempName == NULL)
{
strcpy(sysState.myUnixname, "joesmith");
strcpy(sysState.myUnixname, "noname");
printf("Failed to get a proper Unix login name. Using: %s\n", sysState.myUnixname);
}
strcpy(sysState.myUnixname, tempName);