Skip to content
Snippets Groups Projects
Commit 2c25a853 authored by Per Cederqvist's avatar Per Cederqvist
Browse files

(kill_client): Log left-overs from misc_info_list and local_text_no

	separately.
parent abdd8bc0
No related branches found
No related tags found
No related merge requests found
/*
* $Id: internal-connections.c,v 0.50 2002/08/16 00:24:22 ceder Exp $
* $Id: internal-connections.c,v 0.51 2002/10/15 09:27:06 ceder Exp $
* Copyright (C) 1991-1994, 1996-2002 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
......@@ -277,8 +277,11 @@ kill_client(Connection *cp)
kom_log("kill_client(): unexpected string remains.\n");
}
if ( cp->misc_info_list.misc != NULL || cp->c_local_text_no_p != NULL )
kom_log("kill_client(): unexpected remaining data.\n");
if (cp->misc_info_list.misc != NULL)
kom_log("kill_client(): unexpected misc_info_list remains.\n");
if (cp->c_local_text_no_p != NULL)
kom_log("kill_client(): unexpected local_text_no remains.\n");
if (!s_empty(cp->aux_item.data))
kom_log("kill_client(): unexpected aux_item string remains.\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment