From: Iain Patterson Date: Sat, 4 Jan 2014 10:48:22 +0000 (+0000) Subject: More appropriate LegalCopyright field. X-Git-Tag: v2.22~84 X-Git-Url: http://git.iain.cx/?p=nssm.git;a=commitdiff_plain;h=692f4214f20b6d141d0cc16dd2aaed42bd886d21 More appropriate LegalCopyright field. It doesn't make a lot of sense to have a Copyright notice on a Public Domain work. The intention of including the LegalCopyright version string was solely to assert authorship. The new string should make that clearer. --- diff --git a/nssm.rc b/nssm.rc index 730cb8d..41bea9a 100644 Binary files a/nssm.rc and b/nssm.rc differ diff --git a/version.cmd b/version.cmd index d9ce5d7..1340d5b 100644 --- a/version.cmd +++ b/version.cmd @@ -44,7 +44,7 @@ if "%BUILD_ID%" == "" (set year=) else ( @echo>>version.h.new #define NSSM_VERSIONINFO %major%,%minor%,%n%,%BUILD_NUMBER% @echo>>version.h.new #define NSSM_DATE _T("%DATE%") @echo>>version.h.new #define NSSM_FILEFLAGS %flags% -@echo>>version.h.new #define NSSM_COPYRIGHT _T("(c) 2003-%year% Iain Patterson") +@echo>>version.h.new #define NSSM_COPYRIGHT _T("Public Domain; Author Iain Patterson 2003-%year%") fc version.h version.h.new >NUL: 2>NUL: if %ERRORLEVEL% == 0 (del version.h.new) else (move /y version.h.new version.h)