diff options
author | nicm <nicm> | 2015-04-27 22:42:10 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-04-27 22:42:10 +0000 |
commit | 91f6347485a2efe714cf0bc50e4d1fbc2a33c01e (patch) | |
tree | ef92082831d92ce15cf8f96fb78b1360d1c29aa0 | |
parent | 95195f52584565483bf9850840f6d81cd88bf9b2 (diff) | |
download | rtmux-91f6347485a2efe714cf0bc50e4d1fbc2a33c01e.tar.gz rtmux-91f6347485a2efe714cf0bc50e4d1fbc2a33c01e.tar.bz2 rtmux-91f6347485a2efe714cf0bc50e4d1fbc2a33c01e.zip |
Assign to the right variable when comparing clients.
-rw-r--r-- | cmd-find.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -131,7 +131,7 @@ cmd_find_best_client(struct client **clist, u_int csize) } else { TAILQ_FOREACH(c_loop, &clients, entry) { if (cmd_find_client_better(c_loop, c)) - c_loop = c; + c = c_loop; } } return (c); |