summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TODO2
-rw-r--r--functions.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/TODO b/TODO
index 6c64616..2f7e060 100644
--- a/TODO
+++ b/TODO
@@ -24,3 +24,5 @@ Sometimes replaymode = "lastspoke" will replay the last message you sent if you
Can memory usage be reduced further? (e.g. better channel struct management)
Ability to load new certificate whilst running.
+
+Disconnecting IP address announced is not always correct.
diff --git a/functions.c b/functions.c
index 54e7390..2b039e0 100644
--- a/functions.c
+++ b/functions.c
@@ -396,7 +396,7 @@ void updategreetings(char *greeting001, char *greeting002, char *greeting003, ch
// TODO - Use this wherever we are calculating the position (various places) instead of
// duplicating code.
int arrindex(struct client *clients, int clientfd) {
- // Find the client in the clients array and make sure they are authenticated
+ // Find the client in the clients array
for (int i = 0; i < MAXCLIENTS; i++) {
if (clients[i].fd == clientfd) {
return i;