Append a goal to TODO.
This commit is contained in:
parent
6aa4f110ed
commit
912c653000
1
TODO
1
TODO
@ -7,3 +7,4 @@
|
|||||||
- Remove platform-specific code.
|
- Remove platform-specific code.
|
||||||
- Implement proper preferences handling
|
- Implement proper preferences handling
|
||||||
- Implement chanop commands
|
- Implement chanop commands
|
||||||
|
- Remove okButtStartupCbk -- having different callbacks for the same button at differing times without an indicator is bad UX.
|
||||||
|
@ -306,7 +306,7 @@ int main (int argc, char *argv[])
|
|||||||
tempName = getenv("LOGNAME");
|
tempName = getenv("LOGNAME");
|
||||||
if (strlen(tempName) > MAX_NAME_LEN || tempName == NULL)
|
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);
|
printf("Failed to get a proper Unix login name. Using: %s\n", sysState.myUnixname);
|
||||||
}
|
}
|
||||||
strcpy(sysState.myUnixname, tempName);
|
strcpy(sysState.myUnixname, tempName);
|
||||||
|
Loading…
Reference in New Issue
Block a user