vlprocs-extended-user-logging-20050618

update log message to provide full username
This commit is contained in:
Derrick Brashear 2005-06-19 00:23:46 +00:00
parent f16d1cef70
commit b5461fc5a8

View File

@ -97,7 +97,8 @@ rxinfo(rxcall)
rxkad_GetServerInfo(rxcall->conn, NULL, &exp, tname, tinst, tcell, rxkad_GetServerInfo(rxcall->conn, NULL, &exp, tname, tinst, tcell,
NULL); NULL);
if (!code) 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 else
sprintf(rxinfo_str, "%s noauth", inet_ntoa(hostAddr)); sprintf(rxinfo_str, "%s noauth", inet_ntoa(hostAddr));
return (rxinfo_str); return (rxinfo_str);