From b5461fc5a8350a5a1110e225da62caa7bf0e7245 Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Sun, 19 Jun 2005 00:23:46 +0000 Subject: [PATCH] vlprocs-extended-user-logging-20050618 update log message to provide full username --- src/vlserver/vlprocs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/vlserver/vlprocs.c b/src/vlserver/vlprocs.c index 9d2feeaa53..97c8afb133 100644 --- a/src/vlserver/vlprocs.c +++ b/src/vlserver/vlprocs.c @@ -97,7 +97,8 @@ rxinfo(rxcall) rxkad_GetServerInfo(rxcall->conn, NULL, &exp, tname, tinst, tcell, NULL); if (!code) - sprintf(rxinfo_str, "%s %s", inet_ntoa(hostAddr), tname); + sprintf(rxinfo_str, "%s %s%s%s%s%s", inet_ntoa(hostAddr), tname, + tinst?".":"", tinst?tinst:"", tcell?"@":"", tcell?tcell:""); else sprintf(rxinfo_str, "%s noauth", inet_ntoa(hostAddr)); return (rxinfo_str);