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

Removed erroneous backward compatibility in prot_a_output_who_info().

parent 83333f38
No related branches found
No related tags found
No related merge requests found
/* /*
* $Id: prot-a-output.c,v 0.9 1992/04/04 17:31:30 ceder Exp $ * $Id: prot-a-output.c,v 0.10 1992/04/07 14:51:26 ceder Exp $
* Copyright (C) 1991 Lysator Academic Computer Association. * Copyright (C) 1991 Lysator Academic Computer Association.
* *
* This file is part of the LysKOM server. * This file is part of the LysKOM server.
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
* Written by ceder 1990-07-13 * Written by ceder 1990-07-13
*/ */
static char *rcsid = "$Id: prot-a-output.c,v 0.9 1992/04/04 17:31:30 ceder Exp $"; static char *rcsid = "$Id: prot-a-output.c,v 0.10 1992/04/07 14:51:26 ceder Exp $";
#include <kom-types.h> #include <kom-types.h>
...@@ -278,15 +278,13 @@ void ...@@ -278,15 +278,13 @@ void
prot_a_output_who_info(Connection *fp, prot_a_output_who_info(Connection *fp,
Who_info *info) Who_info *info)
{ {
String user_host_host = EMPTY_STRING;
mux_printf(fp, " %lu %lu %lu", mux_printf(fp, " %lu %lu %lu",
(u_long)info->person, (u_long)info->person,
(u_long)info->working_conference, (u_long)info->working_conference,
(u_long)info->session_no); (u_long)info->session_no);
prot_a_output_string(fp, info->what_am_i_doing); prot_a_output_string(fp, info->what_am_i_doing);
prot_a_output_string(fp, user_host_host); prot_a_output_string(fp, info->username);
s_clear(&user_host_host); s_clear(&user_host_host);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment