Skip to content

Commit

Permalink
Bump copyright year and make easier to bump
Browse files Browse the repository at this point in the history
(cherry picked from commit ae249c6)
  • Loading branch information
metalefty committed Feb 21, 2024
1 parent a56f088 commit 84a747c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

AC_PREREQ(2.65)
AC_INIT([xrdp], [0.9.24], [[email protected]])
AC_DEFINE([VERSION_YEAR], 2024, [Copyright year])
AC_CONFIG_HEADERS(config_ac.h:config_ac-h.in)
AM_INIT_AUTOMAKE([1.7.2 foreign])
AC_CONFIG_MACRO_DIR([m4])
Expand Down
5 changes: 3 additions & 2 deletions sesman/sesman.c
Original file line number Diff line number Diff line change
Expand Up @@ -567,8 +567,9 @@ print_version(void)
{
g_writeln("xrdp-sesman %s", PACKAGE_VERSION);
g_writeln(" The xrdp session manager");
g_writeln(" Copyright (C) 2004-2020 Jay Sorg, "
"Neutrino Labs, and all contributors.");
g_writeln(" Copyright (C) 2004-%d Jay Sorg, "
"Neutrino Labs, and all contributors.",
VERSION_YEAR);
g_writeln(" See https://github.com/neutrinolabs/xrdp for more information.");
g_writeln("%s", "");

Expand Down
5 changes: 3 additions & 2 deletions xrdp/xrdp.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,9 @@ print_version(void)
{
g_writeln("xrdp %s", PACKAGE_VERSION);
g_writeln(" A Remote Desktop Protocol Server.");
g_writeln(" Copyright (C) 2004-2020 Jay Sorg, "
"Neutrino Labs, and all contributors.");
g_writeln(" Copyright (C) 2004-%d Jay Sorg, "
"Neutrino Labs, and all contributors.",
VERSION_YEAR);
g_writeln(" See https://github.com/neutrinolabs/xrdp for more information.");
g_writeln("%s", "");

Expand Down

0 comments on commit 84a747c

Please sign in to comment.