diff options
author | Darkvater <darkvater@openttd.org> | 2005-02-22 13:13:57 +0000 |
---|---|---|
committer | Darkvater <darkvater@openttd.org> | 2005-02-22 13:13:57 +0000 |
commit | 5b261af6591368f9b7d620d04c99e5ee06c80c1b (patch) | |
tree | 5eaba0dbbd058f47d9ac779481cbd067c05eb028 | |
parent | 51eef8c5b7b54a64802fc3b833898f0fd75b6a51 (diff) | |
download | openttd-5b261af6591368f9b7d620d04c99e5ee06c80c1b.tar.xz |
(svn r1899) - Fix: fix braindead strcmp from previous commit. /me bangs head into the wall
-rw-r--r-- | console_cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/console_cmds.c b/console_cmds.c index 6fd97804e..a086443bc 100644 --- a/console_cmds.c +++ b/console_cmds.c @@ -992,7 +992,7 @@ DEF_CONSOLE_CMD(ConSet) { if (argc == 3 && ci != NULL) { // Don't change the name if it is the same as the old name - if (strncmp(ci->client_name, argv[2], sizeof(_network_player_name)) != 0) { + if (strcmp(ci->client_name, argv[2]) != 0) { if (!_network_server) { SEND_COMMAND(PACKET_CLIENT_SET_NAME)(argv[2]); } else { |