From a57325e8af342f7dc6661f11f5d715151cb02ff1 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Thu, 5 Jan 2017 13:56:18 -0800 Subject: [PATCH] update source copyright notices for 2017 --- build/VStudio/installer/CustomActions/CustomActions.cpp | 2 +- ext/tlib/callstack.c | 2 +- ext/tlib/callstack.h | 2 +- ext/tlib/injected/allfunc.h | 2 +- ext/tlib/injected/curlfunc.c | 2 +- ext/tlib/injected/curlfunc.h | 2 +- ext/tlib/injected/stdfunc.c | 2 +- ext/tlib/injected/stdfunc.h | 2 +- ext/tlib/injection.c | 2 +- ext/tlib/injection.h | 2 +- ext/tlib/testsuite.c | 2 +- ext/tlib/testsuite.h | 2 +- inc/fuse/fuse.h | 2 +- inc/fuse/fuse_common.h | 2 +- inc/fuse/fuse_opt.h | 2 +- inc/fuse/winfsp_fuse.h | 2 +- inc/winfsp/fsctl.h | 2 +- inc/winfsp/winfsp.h | 2 +- opt/cygfuse/cygfuse.c | 2 +- src/dll/debug.c | 2 +- src/dll/eventlog.c | 2 +- src/dll/fs.c | 2 +- src/dll/fsctl.c | 2 +- src/dll/fsop.c | 2 +- src/dll/fuse/fuse.c | 2 +- src/dll/fuse/fuse_intf.c | 2 +- src/dll/fuse/fuse_main.c | 2 +- src/dll/fuse/fuse_opt.c | 2 +- src/dll/fuse/library.h | 2 +- src/dll/library.c | 2 +- src/dll/library.h | 2 +- src/dll/np.c | 2 +- src/dll/ntstatus.c | 2 +- src/dll/path.c | 2 +- src/dll/posix.c | 2 +- src/dll/security.c | 2 +- src/dll/service.c | 2 +- src/dll/util.c | 2 +- src/launcher/launchctl.c | 2 +- src/launcher/launcher.c | 2 +- src/launcher/launcher.h | 2 +- src/shared/minimal.h | 2 +- src/sys/callbacks.c | 2 +- src/sys/cleanup.c | 2 +- src/sys/close.c | 2 +- src/sys/create.c | 2 +- src/sys/debug.c | 2 +- src/sys/devctl.c | 2 +- src/sys/device.c | 2 +- src/sys/dirctl.c | 2 +- src/sys/driver.c | 2 +- src/sys/driver.h | 2 +- src/sys/ea.c | 2 +- src/sys/file.c | 2 +- src/sys/fileinfo.c | 2 +- src/sys/flush.c | 2 +- src/sys/fsctl.c | 2 +- src/sys/iop.c | 2 +- src/sys/ioq.c | 2 +- src/sys/lockctl.c | 2 +- src/sys/meta.c | 2 +- src/sys/name.c | 2 +- src/sys/read.c | 2 +- src/sys/security.c | 2 +- src/sys/shutdown.c | 2 +- src/sys/statistics.c | 2 +- src/sys/util.c | 2 +- src/sys/volinfo.c | 2 +- src/sys/volume.c | 2 +- src/sys/wq.c | 2 +- src/sys/write.c | 2 +- tst/fsbench/fsbench.c | 2 +- tst/fscrash/fscrash-main.c | 2 +- tst/fscrash/fscrash.c | 2 +- tst/fscrash/fscrash.h | 2 +- tst/memfs/memfs-main-old.c | 2 +- tst/memfs/memfs-main.c | 2 +- tst/memfs/memfs.cpp | 2 +- tst/memfs/memfs.h | 2 +- tst/winfsp-tests/create-test.c | 2 +- tst/winfsp-tests/dirctl-test.c | 2 +- tst/winfsp-tests/eventlog-test.c | 2 +- tst/winfsp-tests/flush-test.c | 2 +- tst/winfsp-tests/fuse-opt-test.c | 2 +- tst/winfsp-tests/hooks.c | 2 +- tst/winfsp-tests/info-test.c | 2 +- tst/winfsp-tests/lock-test.c | 2 +- tst/winfsp-tests/memfs-test.c | 2 +- tst/winfsp-tests/mount-test.c | 2 +- tst/winfsp-tests/oplock-test.c | 2 +- tst/winfsp-tests/path-test.c | 2 +- tst/winfsp-tests/posix-test.c | 2 +- tst/winfsp-tests/rdwr-test.c | 2 +- tst/winfsp-tests/reparse-test.c | 2 +- tst/winfsp-tests/resilient.c | 2 +- tst/winfsp-tests/security-test.c | 2 +- tst/winfsp-tests/stream-tests.c | 2 +- tst/winfsp-tests/timeout-test.c | 2 +- tst/winfsp-tests/winfsp-tests.c | 2 +- tst/winfsp-tests/winfsp-tests.h | 2 +- 100 files changed, 100 insertions(+), 100 deletions(-) diff --git a/build/VStudio/installer/CustomActions/CustomActions.cpp b/build/VStudio/installer/CustomActions/CustomActions.cpp index 35040791..560031af 100644 --- a/build/VStudio/installer/CustomActions/CustomActions.cpp +++ b/build/VStudio/installer/CustomActions/CustomActions.cpp @@ -1,7 +1,7 @@ /** * @file CustomActions.cpp * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/ext/tlib/callstack.c b/ext/tlib/callstack.c index 68392116..694bd07d 100644 --- a/ext/tlib/callstack.c +++ b/ext/tlib/callstack.c @@ -1,7 +1,7 @@ /** * @file tlib/callstack.c * - * @copyright 2014-2015 Bill Zissimopoulos + * @copyright 2014-2017 Bill Zissimopoulos */ #include diff --git a/ext/tlib/callstack.h b/ext/tlib/callstack.h index 78f53e13..9c52866d 100644 --- a/ext/tlib/callstack.h +++ b/ext/tlib/callstack.h @@ -1,7 +1,7 @@ /** * @file tlib/callstack.h * - * @copyright 2014-2015 Bill Zissimopoulos + * @copyright 2014-2017 Bill Zissimopoulos */ #ifndef TLIB_CALLSTACK_H_INCLUDED diff --git a/ext/tlib/injected/allfunc.h b/ext/tlib/injected/allfunc.h index bf6a4aa3..a8230c54 100644 --- a/ext/tlib/injected/allfunc.h +++ b/ext/tlib/injected/allfunc.h @@ -1,7 +1,7 @@ /** * @file tlib/injected/allfunc.h * - * @copyright 2014-2015 Bill Zissimopoulos + * @copyright 2014-2017 Bill Zissimopoulos */ #ifndef TLIB_INJECTED_ALLFUNC_H_INCLUDED diff --git a/ext/tlib/injected/curlfunc.c b/ext/tlib/injected/curlfunc.c index 4830897d..ecd77383 100644 --- a/ext/tlib/injected/curlfunc.c +++ b/ext/tlib/injected/curlfunc.c @@ -1,7 +1,7 @@ /** * @file tlib/injected/curlfunc.c * - * @copyright 2014-2015 Bill Zissimopoulos + * @copyright 2014-2017 Bill Zissimopoulos */ #include diff --git a/ext/tlib/injected/curlfunc.h b/ext/tlib/injected/curlfunc.h index a8435e1e..996f369a 100644 --- a/ext/tlib/injected/curlfunc.h +++ b/ext/tlib/injected/curlfunc.h @@ -1,7 +1,7 @@ /** * @file tlib/injected/curlfunc.h * - * @copyright 2014-2015 Bill Zissimopoulos + * @copyright 2014-2017 Bill Zissimopoulos */ #ifndef TLIB_INJECTED_CURLFUNC_H_INCLUDED diff --git a/ext/tlib/injected/stdfunc.c b/ext/tlib/injected/stdfunc.c index ce64c538..e4fa7961 100644 --- a/ext/tlib/injected/stdfunc.c +++ b/ext/tlib/injected/stdfunc.c @@ -1,7 +1,7 @@ /** * @file tlib/injected/stdfunc.c * - * @copyright 2014-2015 Bill Zissimopoulos + * @copyright 2014-2017 Bill Zissimopoulos */ #include diff --git a/ext/tlib/injected/stdfunc.h b/ext/tlib/injected/stdfunc.h index 8bbf93e1..150a05dd 100644 --- a/ext/tlib/injected/stdfunc.h +++ b/ext/tlib/injected/stdfunc.h @@ -1,7 +1,7 @@ /** * @file tlib/injected/stdfunc.h * - * @copyright 2014-2015 Bill Zissimopoulos + * @copyright 2014-2017 Bill Zissimopoulos */ #ifndef TLIB_INJECTED_STDFUNC_H_INCLUDED diff --git a/ext/tlib/injection.c b/ext/tlib/injection.c index 11e5adba..379ae6bf 100644 --- a/ext/tlib/injection.c +++ b/ext/tlib/injection.c @@ -1,7 +1,7 @@ /** * @file tlib/injection.c * - * @copyright 2014-2015 Bill Zissimopoulos + * @copyright 2014-2017 Bill Zissimopoulos */ #include diff --git a/ext/tlib/injection.h b/ext/tlib/injection.h index df1cd6c7..91eb6e25 100644 --- a/ext/tlib/injection.h +++ b/ext/tlib/injection.h @@ -1,7 +1,7 @@ /** * @file tlib/injection.h * - * @copyright 2014-2015 Bill Zissimopoulos + * @copyright 2014-2017 Bill Zissimopoulos */ /* NOTE: This header may usefully be included multiple times. diff --git a/ext/tlib/testsuite.c b/ext/tlib/testsuite.c index 5dd3fae2..a995be26 100644 --- a/ext/tlib/testsuite.c +++ b/ext/tlib/testsuite.c @@ -1,7 +1,7 @@ /** * @file tlib/testsuite.c * - * @copyright 2014-2015 Bill Zissimopoulos + * @copyright 2014-2017 Bill Zissimopoulos */ #include diff --git a/ext/tlib/testsuite.h b/ext/tlib/testsuite.h index db8d2ac7..af4365ee 100644 --- a/ext/tlib/testsuite.h +++ b/ext/tlib/testsuite.h @@ -1,7 +1,7 @@ /** * @file tlib/testsuite.h * - * @copyright 2014-2015 Bill Zissimopoulos + * @copyright 2014-2017 Bill Zissimopoulos */ #ifndef TLIB_TESTSUITE_H_INCLUDED diff --git a/inc/fuse/fuse.h b/inc/fuse/fuse.h index 7d5624c1..fc698daf 100644 --- a/inc/fuse/fuse.h +++ b/inc/fuse/fuse.h @@ -6,7 +6,7 @@ * FUSE: Filesystem in Userspace * Copyright (C) 2001-2007 Miklos Szeredi * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/inc/fuse/fuse_common.h b/inc/fuse/fuse_common.h index 309976d3..0bc13297 100644 --- a/inc/fuse/fuse_common.h +++ b/inc/fuse/fuse_common.h @@ -6,7 +6,7 @@ * FUSE: Filesystem in Userspace * Copyright (C) 2001-2007 Miklos Szeredi * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/inc/fuse/fuse_opt.h b/inc/fuse/fuse_opt.h index 035eb8b5..e8cc0ec5 100644 --- a/inc/fuse/fuse_opt.h +++ b/inc/fuse/fuse_opt.h @@ -6,7 +6,7 @@ * FUSE: Filesystem in Userspace * Copyright (C) 2001-2007 Miklos Szeredi * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/inc/fuse/winfsp_fuse.h b/inc/fuse/winfsp_fuse.h index debcd139..8867ab7f 100644 --- a/inc/fuse/winfsp_fuse.h +++ b/inc/fuse/winfsp_fuse.h @@ -2,7 +2,7 @@ * @file fuse/winfsp_fuse.h * WinFsp FUSE compatible API. * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/inc/winfsp/fsctl.h b/inc/winfsp/fsctl.h index 741c9de0..f50b48b8 100644 --- a/inc/winfsp/fsctl.h +++ b/inc/winfsp/fsctl.h @@ -1,7 +1,7 @@ /** * @file winfsp/fsctl.h * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/inc/winfsp/winfsp.h b/inc/winfsp/winfsp.h index f6f17f28..9a57732d 100644 --- a/inc/winfsp/winfsp.h +++ b/inc/winfsp/winfsp.h @@ -5,7 +5,7 @@ * In order to use the WinFsp API the user mode file system must include <winfsp/winfsp.h> * and link with the winfsp_x64.dll (or winfsp_x86.dll) library. * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/opt/cygfuse/cygfuse.c b/opt/cygfuse/cygfuse.c index 12142c9e..8ac05f65 100644 --- a/opt/cygfuse/cygfuse.c +++ b/opt/cygfuse/cygfuse.c @@ -1,7 +1,7 @@ /** * @file cygfuse/cygfuse.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/dll/debug.c b/src/dll/debug.c index 58fe1373..2f764bf0 100644 --- a/src/dll/debug.c +++ b/src/dll/debug.c @@ -1,7 +1,7 @@ /** * @file dll/debug.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/dll/eventlog.c b/src/dll/eventlog.c index a071d102..82e0e617 100644 --- a/src/dll/eventlog.c +++ b/src/dll/eventlog.c @@ -1,7 +1,7 @@ /** * @file dll/eventlog.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/dll/fs.c b/src/dll/fs.c index 26cf94ef..74c66adc 100644 --- a/src/dll/fs.c +++ b/src/dll/fs.c @@ -1,7 +1,7 @@ /** * @file dll/fs.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/dll/fsctl.c b/src/dll/fsctl.c index f8c6f341..e09fc618 100644 --- a/src/dll/fsctl.c +++ b/src/dll/fsctl.c @@ -1,7 +1,7 @@ /** * @file dll/fsctl.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/dll/fsop.c b/src/dll/fsop.c index 695239ee..768bc05e 100644 --- a/src/dll/fsop.c +++ b/src/dll/fsop.c @@ -1,7 +1,7 @@ /** * @file dll/fsop.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/dll/fuse/fuse.c b/src/dll/fuse/fuse.c index 73562e02..dfdbaa05 100644 --- a/src/dll/fuse/fuse.c +++ b/src/dll/fuse/fuse.c @@ -1,7 +1,7 @@ /** * @file dll/fuse/fuse.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/dll/fuse/fuse_intf.c b/src/dll/fuse/fuse_intf.c index 26ec6f93..3efbc0bb 100644 --- a/src/dll/fuse/fuse_intf.c +++ b/src/dll/fuse/fuse_intf.c @@ -1,7 +1,7 @@ /** * @file dll/fuse/fuse_intf.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/dll/fuse/fuse_main.c b/src/dll/fuse/fuse_main.c index 223635ff..9131e0ec 100644 --- a/src/dll/fuse/fuse_main.c +++ b/src/dll/fuse/fuse_main.c @@ -1,7 +1,7 @@ /** * @file dll/fuse/fuse_main.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/dll/fuse/fuse_opt.c b/src/dll/fuse/fuse_opt.c index 2940e185..f42c1660 100644 --- a/src/dll/fuse/fuse_opt.c +++ b/src/dll/fuse/fuse_opt.c @@ -1,7 +1,7 @@ /** * @file dll/fuse/fuse_opt.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/dll/fuse/library.h b/src/dll/fuse/library.h index ff6ff3de..d11070d2 100644 --- a/src/dll/fuse/library.h +++ b/src/dll/fuse/library.h @@ -1,7 +1,7 @@ /** * @file dll/fuse/library.h * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/dll/library.c b/src/dll/library.c index 2329316d..5e5c113e 100644 --- a/src/dll/library.c +++ b/src/dll/library.c @@ -1,7 +1,7 @@ /** * @file dll/library.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/dll/library.h b/src/dll/library.h index 3ab6e889..59b05380 100644 --- a/src/dll/library.h +++ b/src/dll/library.h @@ -1,7 +1,7 @@ /** * @file dll/library.h * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/dll/np.c b/src/dll/np.c index bfaae0bf..184f092b 100644 --- a/src/dll/np.c +++ b/src/dll/np.c @@ -1,7 +1,7 @@ /** * @file dll/np.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/dll/ntstatus.c b/src/dll/ntstatus.c index 37165fab..b7cef46c 100644 --- a/src/dll/ntstatus.c +++ b/src/dll/ntstatus.c @@ -1,7 +1,7 @@ /** * @file dll/ntstatus.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/dll/path.c b/src/dll/path.c index 1b302a3f..baac7810 100644 --- a/src/dll/path.c +++ b/src/dll/path.c @@ -1,7 +1,7 @@ /** * @file dll/path.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/dll/posix.c b/src/dll/posix.c index f7e808da..fe66f22f 100644 --- a/src/dll/posix.c +++ b/src/dll/posix.c @@ -14,7 +14,7 @@ * [SNAME] * https://www.cygwin.com/cygwin-ug-net/using-specialnames.html * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/dll/security.c b/src/dll/security.c index c1f278a2..515098ca 100644 --- a/src/dll/security.c +++ b/src/dll/security.c @@ -1,7 +1,7 @@ /** * @file dll/security.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/dll/service.c b/src/dll/service.c index 57a8fc96..4ae4efe7 100644 --- a/src/dll/service.c +++ b/src/dll/service.c @@ -1,7 +1,7 @@ /** * @file dll/service.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/dll/util.c b/src/dll/util.c index a767d309..ec6bc4d2 100644 --- a/src/dll/util.c +++ b/src/dll/util.c @@ -1,7 +1,7 @@ /** * @file dll/util.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/launcher/launchctl.c b/src/launcher/launchctl.c index 6e4c5d71..f999ccac 100644 --- a/src/launcher/launchctl.c +++ b/src/launcher/launchctl.c @@ -1,7 +1,7 @@ /** * @file launcher/launchctl.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/launcher/launcher.c b/src/launcher/launcher.c index 90463797..958f5080 100644 --- a/src/launcher/launcher.c +++ b/src/launcher/launcher.c @@ -1,7 +1,7 @@ /** * @file launcher/launcher.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/launcher/launcher.h b/src/launcher/launcher.h index 8ef91e92..27ffe37f 100644 --- a/src/launcher/launcher.h +++ b/src/launcher/launcher.h @@ -1,7 +1,7 @@ /** * @file launcher/launcher.h * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/shared/minimal.h b/src/shared/minimal.h index 03210906..a3801398 100644 --- a/src/shared/minimal.h +++ b/src/shared/minimal.h @@ -1,7 +1,7 @@ /** * @file shared/minimal.h * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/callbacks.c b/src/sys/callbacks.c index ff31046a..d48f7fe1 100644 --- a/src/sys/callbacks.c +++ b/src/sys/callbacks.c @@ -2,7 +2,7 @@ * @file sys/callbacks.c * Fast I/O and resource acquisition callbacks. * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/cleanup.c b/src/sys/cleanup.c index e6d124b5..b4470b42 100644 --- a/src/sys/cleanup.c +++ b/src/sys/cleanup.c @@ -1,7 +1,7 @@ /** * @file sys/cleanup.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/close.c b/src/sys/close.c index 44a65782..06cbec82 100644 --- a/src/sys/close.c +++ b/src/sys/close.c @@ -1,7 +1,7 @@ /** * @file sys/close.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/create.c b/src/sys/create.c index feb481fb..fc11ea69 100644 --- a/src/sys/create.c +++ b/src/sys/create.c @@ -1,7 +1,7 @@ /** * @file sys/create.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/debug.c b/src/sys/debug.c index 09f10791..56c02cba 100644 --- a/src/sys/debug.c +++ b/src/sys/debug.c @@ -1,7 +1,7 @@ /** * @file sys/debug.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/devctl.c b/src/sys/devctl.c index 0c96ed9c..e6097bca 100644 --- a/src/sys/devctl.c +++ b/src/sys/devctl.c @@ -1,7 +1,7 @@ /** * @file sys/devctl.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/device.c b/src/sys/device.c index f3eadb22..5c776179 100644 --- a/src/sys/device.c +++ b/src/sys/device.c @@ -1,7 +1,7 @@ /** * @file sys/device.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/dirctl.c b/src/sys/dirctl.c index c6f3ab20..be52b85d 100644 --- a/src/sys/dirctl.c +++ b/src/sys/dirctl.c @@ -1,7 +1,7 @@ /** * @file sys/dirctl.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/driver.c b/src/sys/driver.c index 41ee0b6a..ebb04afa 100644 --- a/src/sys/driver.c +++ b/src/sys/driver.c @@ -1,7 +1,7 @@ /** * @file sys/driver.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/driver.h b/src/sys/driver.h index 12fdf824..5babd58c 100644 --- a/src/sys/driver.h +++ b/src/sys/driver.h @@ -1,7 +1,7 @@ /** * @file sys/driver.h * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/ea.c b/src/sys/ea.c index 82a9ca8d..60fb8156 100644 --- a/src/sys/ea.c +++ b/src/sys/ea.c @@ -1,7 +1,7 @@ /** * @file sys/ea.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/file.c b/src/sys/file.c index 8102408f..eea11356 100644 --- a/src/sys/file.c +++ b/src/sys/file.c @@ -1,7 +1,7 @@ /** * @file sys/file.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/fileinfo.c b/src/sys/fileinfo.c index 7d244a59..145fa91b 100644 --- a/src/sys/fileinfo.c +++ b/src/sys/fileinfo.c @@ -1,7 +1,7 @@ /** * @file sys/fileinfo.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/flush.c b/src/sys/flush.c index 56c3ae9b..a0982a9b 100644 --- a/src/sys/flush.c +++ b/src/sys/flush.c @@ -1,7 +1,7 @@ /** * @file sys/flush.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/fsctl.c b/src/sys/fsctl.c index 80384954..38987249 100644 --- a/src/sys/fsctl.c +++ b/src/sys/fsctl.c @@ -1,7 +1,7 @@ /** * @file sys/fsctl.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/iop.c b/src/sys/iop.c index 53b6603b..28893ed8 100644 --- a/src/sys/iop.c +++ b/src/sys/iop.c @@ -1,7 +1,7 @@ /** * @file sys/iop.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/ioq.c b/src/sys/ioq.c index 0723338d..85df94cb 100644 --- a/src/sys/ioq.c +++ b/src/sys/ioq.c @@ -1,7 +1,7 @@ /** * @file sys/ioq.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/lockctl.c b/src/sys/lockctl.c index 9bcd79fa..433c719d 100644 --- a/src/sys/lockctl.c +++ b/src/sys/lockctl.c @@ -1,7 +1,7 @@ /** * @file sys/lockctl.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/meta.c b/src/sys/meta.c index 340645cf..6a7d9c7f 100644 --- a/src/sys/meta.c +++ b/src/sys/meta.c @@ -1,7 +1,7 @@ /** * @file sys/meta.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/name.c b/src/sys/name.c index f1aeedfc..b1a673fc 100644 --- a/src/sys/name.c +++ b/src/sys/name.c @@ -1,7 +1,7 @@ /** * @file sys/name.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/read.c b/src/sys/read.c index 176967d8..8666e52f 100644 --- a/src/sys/read.c +++ b/src/sys/read.c @@ -1,7 +1,7 @@ /** * @file sys/read.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/security.c b/src/sys/security.c index a10f4889..1153345d 100644 --- a/src/sys/security.c +++ b/src/sys/security.c @@ -1,7 +1,7 @@ /** * @file sys/security.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/shutdown.c b/src/sys/shutdown.c index 306b4e2d..a0fdfb9d 100644 --- a/src/sys/shutdown.c +++ b/src/sys/shutdown.c @@ -1,7 +1,7 @@ /** * @file sys/shutdown.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/statistics.c b/src/sys/statistics.c index 2d2d6d04..33e0591f 100644 --- a/src/sys/statistics.c +++ b/src/sys/statistics.c @@ -1,7 +1,7 @@ /** * @file sys/statistics.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/util.c b/src/sys/util.c index c8847188..2447df0e 100644 --- a/src/sys/util.c +++ b/src/sys/util.c @@ -1,7 +1,7 @@ /** * @file sys/util.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/volinfo.c b/src/sys/volinfo.c index b6b5e852..0eb330ec 100644 --- a/src/sys/volinfo.c +++ b/src/sys/volinfo.c @@ -1,7 +1,7 @@ /** * @file sys/volinfo.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/volume.c b/src/sys/volume.c index 6719be33..2bca90d4 100644 --- a/src/sys/volume.c +++ b/src/sys/volume.c @@ -1,7 +1,7 @@ /** * @file sys/volume.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/wq.c b/src/sys/wq.c index b5cb98af..cd925bc7 100644 --- a/src/sys/wq.c +++ b/src/sys/wq.c @@ -1,7 +1,7 @@ /** * @file sys/wq.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/src/sys/write.c b/src/sys/write.c index 57dac9d8..9f700655 100644 --- a/src/sys/write.c +++ b/src/sys/write.c @@ -1,7 +1,7 @@ /** * @file sys/write.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/fsbench/fsbench.c b/tst/fsbench/fsbench.c index 9a930b6b..c379c503 100644 --- a/tst/fsbench/fsbench.c +++ b/tst/fsbench/fsbench.c @@ -1,7 +1,7 @@ /** * @file fsbench.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/fscrash/fscrash-main.c b/tst/fscrash/fscrash-main.c index ab6db923..defb785e 100644 --- a/tst/fscrash/fscrash-main.c +++ b/tst/fscrash/fscrash-main.c @@ -1,7 +1,7 @@ /** * @file fscrash-main.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/fscrash/fscrash.c b/tst/fscrash/fscrash.c index 6e256f65..7a801812 100644 --- a/tst/fscrash/fscrash.c +++ b/tst/fscrash/fscrash.c @@ -1,7 +1,7 @@ /** * @file fscrash.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/fscrash/fscrash.h b/tst/fscrash/fscrash.h index 002c6f26..541440cd 100644 --- a/tst/fscrash/fscrash.h +++ b/tst/fscrash/fscrash.h @@ -1,7 +1,7 @@ /** * @file fscrash.h * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/memfs/memfs-main-old.c b/tst/memfs/memfs-main-old.c index e533151c..1c185ec3 100644 --- a/tst/memfs/memfs-main-old.c +++ b/tst/memfs/memfs-main-old.c @@ -6,7 +6,7 @@ * * Please note that this file is no longer maintained. * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/memfs/memfs-main.c b/tst/memfs/memfs-main.c index 8e6cd8e5..78ff16bb 100644 --- a/tst/memfs/memfs-main.c +++ b/tst/memfs/memfs-main.c @@ -1,7 +1,7 @@ /** * @file memfs-main.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/memfs/memfs.cpp b/tst/memfs/memfs.cpp index 5da6a2fd..8e2264c8 100644 --- a/tst/memfs/memfs.cpp +++ b/tst/memfs/memfs.cpp @@ -1,7 +1,7 @@ /** * @file memfs.cpp * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/memfs/memfs.h b/tst/memfs/memfs.h index d0c692a7..a88ac9bd 100644 --- a/tst/memfs/memfs.h +++ b/tst/memfs/memfs.h @@ -1,7 +1,7 @@ /** * @file memfs.h * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/winfsp-tests/create-test.c b/tst/winfsp-tests/create-test.c index da403ad8..00838b20 100644 --- a/tst/winfsp-tests/create-test.c +++ b/tst/winfsp-tests/create-test.c @@ -1,7 +1,7 @@ /** * @file create-test.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/winfsp-tests/dirctl-test.c b/tst/winfsp-tests/dirctl-test.c index 13c6d198..7c34c0e6 100644 --- a/tst/winfsp-tests/dirctl-test.c +++ b/tst/winfsp-tests/dirctl-test.c @@ -1,7 +1,7 @@ /** * @file dirctl-test.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/winfsp-tests/eventlog-test.c b/tst/winfsp-tests/eventlog-test.c index 25357850..f4351e96 100644 --- a/tst/winfsp-tests/eventlog-test.c +++ b/tst/winfsp-tests/eventlog-test.c @@ -1,7 +1,7 @@ /** * @file eventlog-test.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/winfsp-tests/flush-test.c b/tst/winfsp-tests/flush-test.c index a6a96096..b4084302 100644 --- a/tst/winfsp-tests/flush-test.c +++ b/tst/winfsp-tests/flush-test.c @@ -1,7 +1,7 @@ /** * @file flush-test.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/winfsp-tests/fuse-opt-test.c b/tst/winfsp-tests/fuse-opt-test.c index e9683d7d..5a707ba5 100644 --- a/tst/winfsp-tests/fuse-opt-test.c +++ b/tst/winfsp-tests/fuse-opt-test.c @@ -1,7 +1,7 @@ /** * @file fuse-opt-test.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/winfsp-tests/hooks.c b/tst/winfsp-tests/hooks.c index 23efd680..ec32c59c 100644 --- a/tst/winfsp-tests/hooks.c +++ b/tst/winfsp-tests/hooks.c @@ -1,7 +1,7 @@ /** * @file hooks.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/winfsp-tests/info-test.c b/tst/winfsp-tests/info-test.c index 92ae4d89..bac1e962 100644 --- a/tst/winfsp-tests/info-test.c +++ b/tst/winfsp-tests/info-test.c @@ -1,7 +1,7 @@ /** * @file info-test.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/winfsp-tests/lock-test.c b/tst/winfsp-tests/lock-test.c index c8e8c2a2..4f10c1ec 100644 --- a/tst/winfsp-tests/lock-test.c +++ b/tst/winfsp-tests/lock-test.c @@ -1,7 +1,7 @@ /** * @file lock-test.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/winfsp-tests/memfs-test.c b/tst/winfsp-tests/memfs-test.c index 0cdaf5bf..66d4f4ed 100644 --- a/tst/winfsp-tests/memfs-test.c +++ b/tst/winfsp-tests/memfs-test.c @@ -1,7 +1,7 @@ /** * @file memfs-test.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/winfsp-tests/mount-test.c b/tst/winfsp-tests/mount-test.c index 59e2bebe..b16915f8 100644 --- a/tst/winfsp-tests/mount-test.c +++ b/tst/winfsp-tests/mount-test.c @@ -1,7 +1,7 @@ /** * @file mount-test.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/winfsp-tests/oplock-test.c b/tst/winfsp-tests/oplock-test.c index 199ca2e9..deb30bac 100644 --- a/tst/winfsp-tests/oplock-test.c +++ b/tst/winfsp-tests/oplock-test.c @@ -1,7 +1,7 @@ /** * @file oplock-test.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/winfsp-tests/path-test.c b/tst/winfsp-tests/path-test.c index 0b7c07b9..b33b17c2 100644 --- a/tst/winfsp-tests/path-test.c +++ b/tst/winfsp-tests/path-test.c @@ -1,7 +1,7 @@ /** * @file path-test.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/winfsp-tests/posix-test.c b/tst/winfsp-tests/posix-test.c index 8f1d78b1..082105f5 100644 --- a/tst/winfsp-tests/posix-test.c +++ b/tst/winfsp-tests/posix-test.c @@ -1,7 +1,7 @@ /** * @file posix-test.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/winfsp-tests/rdwr-test.c b/tst/winfsp-tests/rdwr-test.c index e6c5f314..1fbd43cb 100644 --- a/tst/winfsp-tests/rdwr-test.c +++ b/tst/winfsp-tests/rdwr-test.c @@ -1,7 +1,7 @@ /** * @file rdwr-test.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/winfsp-tests/reparse-test.c b/tst/winfsp-tests/reparse-test.c index d1f7ff5f..b0fa4a93 100644 --- a/tst/winfsp-tests/reparse-test.c +++ b/tst/winfsp-tests/reparse-test.c @@ -1,7 +1,7 @@ /** * @file reparse-test.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/winfsp-tests/resilient.c b/tst/winfsp-tests/resilient.c index 0275e13c..3b226034 100644 --- a/tst/winfsp-tests/resilient.c +++ b/tst/winfsp-tests/resilient.c @@ -1,7 +1,7 @@ /** * @file resilient.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/winfsp-tests/security-test.c b/tst/winfsp-tests/security-test.c index 4478fd26..7d312b5e 100644 --- a/tst/winfsp-tests/security-test.c +++ b/tst/winfsp-tests/security-test.c @@ -1,7 +1,7 @@ /** * @file security-test.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/winfsp-tests/stream-tests.c b/tst/winfsp-tests/stream-tests.c index b200097b..0e0a497c 100644 --- a/tst/winfsp-tests/stream-tests.c +++ b/tst/winfsp-tests/stream-tests.c @@ -1,7 +1,7 @@ /** * @file stream-test.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/winfsp-tests/timeout-test.c b/tst/winfsp-tests/timeout-test.c index 3fdc626c..07ce9f18 100644 --- a/tst/winfsp-tests/timeout-test.c +++ b/tst/winfsp-tests/timeout-test.c @@ -1,7 +1,7 @@ /** * @file timeout-test.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/winfsp-tests/winfsp-tests.c b/tst/winfsp-tests/winfsp-tests.c index 012717c4..6760668f 100644 --- a/tst/winfsp-tests/winfsp-tests.c +++ b/tst/winfsp-tests/winfsp-tests.c @@ -1,7 +1,7 @@ /** * @file winfsp-tests.c * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp. diff --git a/tst/winfsp-tests/winfsp-tests.h b/tst/winfsp-tests/winfsp-tests.h index e312babf..c89cdd38 100644 --- a/tst/winfsp-tests/winfsp-tests.h +++ b/tst/winfsp-tests/winfsp-tests.h @@ -1,7 +1,7 @@ /** * @file winfsp-tests.h * - * @copyright 2015-2016 Bill Zissimopoulos + * @copyright 2015-2017 Bill Zissimopoulos */ /* * This file is part of WinFsp.