diff options
| author | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2017-03-14 14:40:17 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2017-03-14 14:40:17 -0700 |
| commit | 533baf921fcb6dee8268faa2f09f77baaf9f4ad0 (patch) | |
| tree | 497256aaf6c63b1fbd3e89406bc92ffeb86792f5 /one.cpp | |
| parent | c1c26ec73ab22e9344d807ffd1f564d46f65196a (diff) | |
| download | infinitytier-533baf921fcb6dee8268faa2f09f77baaf9f4ad0.tar.gz infinitytier-533baf921fcb6dee8268faa2f09f77baaf9f4ad0.zip | |
Software update cleanup, and a fix for updates on Windows.
Diffstat (limited to 'one.cpp')
| -rw-r--r-- | one.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -84,7 +84,7 @@ using namespace ZeroTier; static OneService *volatile zt1Service = (OneService *)0; #define PROGRAM_NAME "ZeroTier One" -#define COPYRIGHT_NOTICE "Copyright © 2011–2016 ZeroTier, Inc." +#define COPYRIGHT_NOTICE "Copyright (c) 2011-2017 ZeroTier, Inc." #define LICENSE_GRANT \ "This is free software: you may copy, modify, and/or distribute this" ZT_EOL_S \ "work under the terms of the GNU General Public License, version 3 or" ZT_EOL_S \ @@ -100,9 +100,10 @@ static OneService *volatile zt1Service = (OneService *)0; static void cliPrintHelp(const char *pn,FILE *out) { fprintf(out, - "%s version %d.%d.%d" ZT_EOL_S, + "%s version %d.%d.%d build %d (platform %d arch %d)" ZT_EOL_S, PROGRAM_NAME, - ZEROTIER_ONE_VERSION_MAJOR, ZEROTIER_ONE_VERSION_MINOR, ZEROTIER_ONE_VERSION_REVISION); + ZEROTIER_ONE_VERSION_MAJOR, ZEROTIER_ONE_VERSION_MINOR, ZEROTIER_ONE_VERSION_REVISION, ZEROTIER_ONE_VERSION_BUILD, + ZT_BUILD_PLATFORM, ZT_BUILD_ARCHITECTURE); fprintf(out, COPYRIGHT_NOTICE ZT_EOL_S LICENSE_GRANT ZT_EOL_S); |
