--- freem/src/xecline.c 2025/02/28 20:51:20 1.2 +++ freem/src/xecline.c 2025/03/09 19:50:47 1.5 @@ -1,23 +1,11 @@ /* - * * - * * * - * * * - * *************** - * * * * * - * * MUMPS * - * * * * * - * *************** - * * * - * * * - * * - * - * xecline.c + * $Id: xecline.c,v 1.5 2025/03/09 19:50:47 snw Exp $ * freem interpreter proper * * - * Author: Serena Willis + * Author: Serena Willis * Copyright (C) 1998 MUG Deutschland - * Copyright (C) 2020 Coherent Logic Development LLC + * Copyright (C) 2020, 2025 Coherent Logic Development LLC * * * This file is part of FreeM. @@ -35,6 +23,13 @@ * You should have received a copy of the GNU Affero Public License * along with FreeM. If not, see . * + * $Log: xecline.c,v $ + * Revision 1.5 2025/03/09 19:50:47 snw + * Second phase of REUSE compliance and header reformat + * + * + * SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC + * SPDX-License-Identifier: AGPL-3.0-or-later **/ #include @@ -2021,8 +2016,8 @@ set10: goto err; } - sec += day * 86400 + timezone; - day = timezone; + sec += day * 86400 + FreeM_timezone; + day = FreeM_timezone; sh_ts.tv_sec = sec; @@ -2042,7 +2037,7 @@ set10: clock = time (0L); ctdata = localtime (&clock); - if (day -= (timezone = ctdata->tm_tzadj)) { + if (day -= (FreeM_timezone = ctdata->tm_tzadj)) { sec -= day; tzoffset += day; stime (&sec);