changeset 14486:58286c1e272d

director: Minor error message fix
author Timo Sirainen <tss@iki.fi>
date Fri, 20 Apr 2012 11:09:36 +0300
parents 5d169948b59d
children 45be27ff3414
files src/director/director-connection.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/director/director-connection.c	Fri Apr 20 01:35:06 2012 +0300
+++ b/src/director/director-connection.c	Fri Apr 20 11:09:36 2012 +0300
@@ -455,7 +455,7 @@
 		}
 		if (user->to_move != NULL)
 			str_append(str, ",moving");
-		if (user->kill_state == USER_KILL_STATE_NONE)
+		if (user->kill_state != USER_KILL_STATE_NONE)
 			str_printfa(str, ",kill_state=%d", user->kill_state);
 		str_append_c(str, ')');
 		i_error("%s", str_c(str));