diff options
author | jsorg71 <jsorg71> | 2010-07-26 03:18:03 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2010-07-26 03:18:03 +0000 |
commit | b7cbc6a6566c7011e65e402d48e422d291257756 (patch) | |
tree | 300656bd80f78fa6809230408f49fe53956c0118 /xrdp | |
parent | aefd3808a11439a83c295f1a1cecaff97011c6d5 (diff) | |
download | xrdp-proprietary-b7cbc6a6566c7011e65e402d48e422d291257756.tar.gz xrdp-proprietary-b7cbc6a6566c7011e65e402d48e422d291257756.zip |
update copyright year and add tui64 type
Diffstat (limited to 'xrdp')
-rw-r--r-- | xrdp/xrdp.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/xrdp/xrdp.c b/xrdp/xrdp.c index 9e57217f..c354be6b 100644 --- a/xrdp/xrdp.c +++ b/xrdp/xrdp.c @@ -314,6 +314,11 @@ main(int argc, char** argv) g_writeln("unusable long size, must be 4 or 8"); return 0; } + if (sizeof(tui64) != 8) + { + g_writeln("unusable tui64 size, must be 8"); + return 0; + } #if defined(_WIN32) run_as_service = 1; if (argc == 2) @@ -324,7 +329,7 @@ main(int argc, char** argv) { g_writeln(""); g_writeln("xrdp: A Remote Desktop Protocol server."); - g_writeln("Copyright (C) Jay Sorg 2004-2009"); + g_writeln("Copyright (C) Jay Sorg 2004-2010"); g_writeln("See http://xrdp.sourceforge.net for more information."); g_writeln(""); g_writeln("Usage: xrdp [options]"); @@ -463,7 +468,7 @@ main(int argc, char** argv) { g_writeln(""); g_writeln("xrdp: A Remote Desktop Protocol server."); - g_writeln("Copyright (C) Jay Sorg 2004-2009"); + g_writeln("Copyright (C) Jay Sorg 2004-2010"); g_writeln("See http://xrdp.sourceforge.net for more information."); g_writeln(""); g_writeln("Usage: xrdp [options]"); @@ -478,7 +483,7 @@ main(int argc, char** argv) { g_writeln(""); g_writeln("xrdp: A Remote Desktop Protocol server."); - g_writeln("Copyright (C) Jay Sorg 2004-2009"); + g_writeln("Copyright (C) Jay Sorg 2004-2010"); g_writeln("See http://xrdp.sourceforge.net for more information."); g_writeln("Version 0.5.0"); g_writeln(""); |