X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=citadel%2Fuser_ops.c;h=7f6ed1c15309ba3d8f7bde5efefbc77132968480;hp=397907524e91c04d91a5f8dd4930be81cc4307d7;hb=58c77aea1dda7b206b900bafb9278237456ef737;hpb=25220160fc09e185bbf9f13f7565bb568cc5a463 diff --git a/citadel/user_ops.c b/citadel/user_ops.c index 397907524..7f6ed1c15 100644 --- a/citadel/user_ops.c +++ b/citadel/user_ops.c @@ -1,7 +1,7 @@ /* * Server functions which perform operations on user objects. * - * Copyright (c) 1987-2018 by the citadel.org team + * Copyright (c) 1987-2019 by the citadel.org team * * This program is open source software; you can redistribute it and/or * modify it under the terms of the GNU General Public License, version 3. @@ -700,9 +700,6 @@ void CtdlUserLogout(void) * since it's possible to log in again without reconnecting, we cannot * make that assumption. */ - strcpy(CCC->fake_username, ""); - strcpy(CCC->fake_hostname, ""); - strcpy(CCC->fake_roomname, ""); CCC->logged_in = 0; /* Check to see if the user was deleted while logged in and purge them if necessary */ @@ -716,9 +713,6 @@ void CtdlUserLogout(void) CCC->cs_inet_email[0] = 0; CCC->cs_inet_other_emails[0] = 0; CCC->cs_inet_fn[0] = 0; - CCC->fake_username[0] = 0; - CCC->fake_hostname[0] = 0; - CCC->fake_roomname[0] = 0; /* Free any output buffers */ unbuffer_output();