Skip to content

Commit

Permalink
Remove message about name lookup server list being empty from prompt
Browse files Browse the repository at this point in the history
This message sounds like an error but it's not. The name lookup
service hasn't been in use for years and isn't something
users need to worry about.
  • Loading branch information
JFreegman committed Dec 25, 2023
1 parent 3273447 commit 739b37b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/toxic.c
Original file line number Diff line number Diff line change
Expand Up @@ -1627,7 +1627,7 @@ int main(int argc, char **argv)
} else if (nameserver_ret == -2) {
queue_init_message("Name lookup server list could not be found.");
} else if (nameserver_ret == -3) {
queue_init_message("Name lookup server list does not contain any valid entries.");
fprintf(stderr, "Name lookup server list does not contain any valid entries\n");
}

#ifdef X11
Expand Down

0 comments on commit 739b37b

Please sign in to comment.