From 712fe24c18df21567e566a013d92f9138666ec8c Mon Sep 17 00:00:00 2001 From: Laszlo Ersek Date: Sat, 4 Mar 2023 21:05:03 +0100 Subject: [PATCH] Update Red Hat Copyright Notices MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit We've been advised to state Red Hat's Copyright as Copyright Red Hat In order to collect our current copyright notices, I've used the following "loose options" for git-grep (bash syntax): loose_options=(-i -e copyright --and -e 'red.?hat') Namely, the command git grep -h "${loose_options[@]}" produces 464 matches (lines) in libnbd @ d169661119f6, and 861 matches (lines) in nbdkit @ e36cfb6fa4f8. Lest we replace strings too broadly, define the "strict pattern" as follows (note that we assume LC_ALL=en_US.UTF-8): year='20[0-2][0-9]' year_range="$year(-$year)?" year_range_list="$year_range(, $year_range)*" year_range_list_opt="( $year_range_list)?" c_sym='(\(C\)|©)' company='Red Hat,? Inc\.' strict_pattern="[Cc]opyright $c_sym$year_range_list_opt $company" The command git grep -h "${loose_options[@]}" \ | grep -E -v -- "$strict_pattern" produces zero lines in each of nbdkit and libnbd, meaning that the "strict pattern" covers all matches from the "loose options". Assuming that our filenames do not contain newline characters, replace the copyright notices with the following command: git grep -l "${loose_options[@]}" \ | sponge \ | tr '\n' '\0' \ | xargs -0 -r -- sed -i -E -e "s/$strict_pattern/Copyright Red Hat/" -- The resultant diffstat in each project shows that all notices have been replaced (note that some files contain multiple notices, therefore the number of files modified is less than the number of lines modified). Signed-off-by: Laszlo Ersek --- LICENSE | 2 +- Makefile.am | 2 +- README.md | 2 +- bash-completion/Makefile.am | 2 +- bash-completion/nbdkit | 2 +- common-rules.mk | 2 +- common/allocators/Makefile.am | 2 +- common/allocators/allocator-internal.h | 2 +- common/allocators/allocator.c | 2 +- common/allocators/allocator.h | 2 +- common/allocators/malloc.c | 2 +- common/allocators/sparse.c | 2 +- common/allocators/zstd.c | 2 +- common/bitmap/Makefile.am | 2 +- common/bitmap/bitmap.c | 2 +- common/bitmap/bitmap.h | 2 +- common/bitmap/test-bitmap.c | 2 +- common/gpt/Makefile.am | 2 +- common/gpt/efi-crc32.h | 2 +- common/gpt/gpt.h | 2 +- common/include/Makefile.am | 2 +- common/include/ansi-colours.h | 2 +- common/include/array-size.h | 2 +- common/include/ascii-ctype.h | 2 +- common/include/ascii-string.h | 2 +- common/include/byte-swapping.h | 2 +- common/include/checked-overflow.h | 2 +- common/include/compiler-macros.h | 2 +- common/include/hexdigit.h | 2 +- common/include/isaligned.h | 2 +- common/include/ispowerof2.h | 2 +- common/include/iszero.h | 2 +- common/include/minmax.h | 2 +- common/include/nextnonzero.h | 2 +- common/include/random.h | 2 +- common/include/rounding.h | 2 +- common/include/static-assert.h | 2 +- common/include/test-array-size.c | 2 +- common/include/test-ascii-ctype.c | 2 +- common/include/test-ascii-string.c | 2 +- common/include/test-byte-swapping.c | 2 +- common/include/test-checked-overflow.c | 2 +- common/include/test-isaligned.c | 2 +- common/include/test-ispowerof2.c | 2 +- common/include/test-iszero.c | 2 +- common/include/test-minmax.c | 2 +- common/include/test-nextnonzero.c | 2 +- common/include/test-random.c | 2 +- common/include/test-tvdiff.c | 2 +- common/include/tvdiff.h | 2 +- common/include/unique-name.h | 2 +- common/include/unix-path-max.h | 2 +- common/protocol/Makefile.am | 2 +- common/protocol/generate-protostrings.sh.in | 2 +- common/protocol/nbd-protocol.h | 2 +- common/protocol/protostrings.h | 2 +- common/regions/Makefile.am | 2 +- common/regions/regions.c | 2 +- common/regions/regions.h | 2 +- common/replacements/Makefile.am | 2 +- common/replacements/fdatasync.c | 2 +- common/replacements/fdatasync.h | 2 +- common/replacements/fsync.c | 2 +- common/replacements/fsync.h | 2 +- common/replacements/get_current_dir_name.c | 2 +- common/replacements/get_current_dir_name.h | 2 +- common/replacements/getline.h | 2 +- common/replacements/open_memstream.c | 2 +- common/replacements/open_memstream.h | 2 +- common/replacements/openlog.c | 2 +- common/replacements/poll.c | 2 +- common/replacements/poll.h | 2 +- common/replacements/posix_memalign.c | 2 +- common/replacements/posix_memalign.h | 2 +- common/replacements/pread.c | 2 +- common/replacements/pread.h | 2 +- common/replacements/pwrite.c | 2 +- common/replacements/pwrite.h | 2 +- common/replacements/realpath.c | 2 +- common/replacements/realpath.h | 2 +- common/replacements/strndup.h | 2 +- common/replacements/sysconf.c | 2 +- common/replacements/sysconf.h | 2 +- common/replacements/syslog.c | 2 +- common/replacements/syslog.h | 2 +- common/replacements/test-current-dir-name.c | 2 +- common/replacements/vsyslog.c | 2 +- common/replacements/win32/Makefile.am | 2 +- common/replacements/win32/nbdkit-cat.mc | 2 +- common/utils/Makefile.am | 2 +- common/utils/bench.h | 2 +- common/utils/cleanup-nbdkit.c | 2 +- common/utils/cleanup.c | 2 +- common/utils/cleanup.h | 2 +- common/utils/const-string-vector.h | 2 +- common/utils/environ.c | 2 +- common/utils/exit-with-parent.c | 2 +- common/utils/exit-with-parent.h | 2 +- common/utils/full-rw.c | 2 +- common/utils/nbdkit-string.h | 2 +- common/utils/quote.c | 2 +- common/utils/string-vector.h | 2 +- common/utils/test-quotes.c | 2 +- common/utils/test-vector.c | 2 +- common/utils/utils.c | 2 +- common/utils/utils.h | 2 +- common/utils/vector.c | 2 +- common/utils/vector.h | 2 +- common/utils/windows-compat.c | 2 +- common/utils/windows-compat.h | 2 +- common/utils/windows-errors.txt | 2 +- configure.ac | 2 +- docs/Makefile.am | 2 +- docs/make-links.sh | 2 +- docs/nbdkit-captive.pod | 2 +- docs/nbdkit-client.pod | 2 +- docs/nbdkit-filter.pod | 2 +- docs/nbdkit-loop.pod | 2 +- docs/nbdkit-plugin.pod | 2 +- docs/nbdkit-probing.pod | 2 +- docs/nbdkit-protocol.pod | 2 +- docs/nbdkit-release-notes-1.10.pod | 2 +- docs/nbdkit-release-notes-1.12.pod | 2 +- docs/nbdkit-release-notes-1.14.pod | 2 +- docs/nbdkit-release-notes-1.16.pod | 2 +- docs/nbdkit-release-notes-1.18.pod | 2 +- docs/nbdkit-release-notes-1.20.pod | 2 +- docs/nbdkit-release-notes-1.22.pod | 2 +- docs/nbdkit-release-notes-1.24.pod | 2 +- docs/nbdkit-release-notes-1.26.pod | 2 +- docs/nbdkit-release-notes-1.28.pod | 2 +- docs/nbdkit-release-notes-1.30.pod | 2 +- docs/nbdkit-release-notes-1.32.pod | 2 +- docs/nbdkit-release-notes-1.4.pod | 2 +- docs/nbdkit-release-notes-1.6.pod | 2 +- docs/nbdkit-release-notes-1.8.pod | 2 +- docs/nbdkit-security.pod | 2 +- docs/nbdkit-service.pod | 2 +- docs/nbdkit-tls.pod | 2 +- docs/nbdkit.pod | 2 +- filters/Makefile.am | 2 +- filters/blocksize-policy/Makefile.am | 2 +- filters/blocksize-policy/nbdkit-blocksize-policy-filter.pod | 2 +- filters/blocksize-policy/policy.c | 2 +- filters/blocksize/Makefile.am | 2 +- filters/blocksize/blocksize.c | 2 +- filters/blocksize/nbdkit-blocksize-filter.pod | 2 +- filters/cache/Makefile.am | 2 +- filters/cache/blk.c | 2 +- filters/cache/blk.h | 2 +- filters/cache/cache.c | 2 +- filters/cache/cache.h | 2 +- filters/cache/lru.c | 2 +- filters/cache/lru.h | 2 +- filters/cache/nbdkit-cache-filter.pod | 2 +- filters/cache/reclaim.c | 2 +- filters/cache/reclaim.h | 2 +- filters/cacheextents/Makefile.am | 2 +- filters/cacheextents/cacheextents.c | 2 +- filters/cacheextents/nbdkit-cacheextents-filter.pod | 2 +- filters/checkwrite/Makefile.am | 2 +- filters/checkwrite/checkwrite.c | 2 +- filters/checkwrite/nbdkit-checkwrite-filter.pod | 2 +- filters/cow/Makefile.am | 2 +- filters/cow/blk.c | 2 +- filters/cow/blk.h | 2 +- filters/cow/cow.c | 2 +- filters/cow/cow.h | 2 +- filters/cow/nbdkit-cow-filter.pod | 2 +- filters/ddrescue/Makefile.am | 2 +- filters/delay/Makefile.am | 2 +- filters/delay/delay.c | 2 +- filters/delay/nbdkit-delay-filter.pod | 2 +- filters/error/Makefile.am | 2 +- filters/error/error.c | 2 +- filters/error/nbdkit-error-filter.pod | 2 +- filters/exitlast/Makefile.am | 2 +- filters/exitlast/exitlast.c | 2 +- filters/exitlast/nbdkit-exitlast-filter.pod | 2 +- filters/exitwhen/Makefile.am | 2 +- filters/exitwhen/exitwhen.c | 2 +- filters/exitwhen/nbdkit-exitwhen-filter.pod | 2 +- filters/exportname/Makefile.am | 2 +- filters/exportname/exportname.c | 2 +- filters/exportname/nbdkit-exportname-filter.pod | 2 +- filters/ext2/Makefile.am | 2 +- filters/ext2/ext2.c | 2 +- filters/ext2/io.c | 2 +- filters/ext2/io.h | 2 +- filters/ext2/nbdkit-ext2-filter.pod | 2 +- filters/extentlist/Makefile.am | 2 +- filters/extentlist/extentlist.c | 2 +- filters/extentlist/nbdkit-extentlist-filter.pod | 2 +- filters/filters.syms | 2 +- filters/fua/Makefile.am | 2 +- filters/fua/fua.c | 2 +- filters/fua/nbdkit-fua-filter.pod | 2 +- filters/gzip/Makefile.am | 2 +- filters/gzip/gzip.c | 2 +- filters/gzip/nbdkit-gzip-filter.pod | 2 +- filters/ip/Makefile.am | 2 +- filters/ip/ip.c | 2 +- filters/ip/nbdkit-ip-filter.pod | 2 +- filters/limit/Makefile.am | 2 +- filters/limit/limit.c | 2 +- filters/limit/nbdkit-limit-filter.pod | 2 +- filters/log/Makefile.am | 2 +- filters/log/log.c | 2 +- filters/log/log.h | 2 +- filters/log/nbdkit-log-filter.pod | 2 +- filters/log/output.c | 2 +- filters/luks/Makefile.am | 2 +- filters/luks/luks-encryption.c | 2 +- filters/luks/luks-encryption.h | 2 +- filters/luks/luks.c | 2 +- filters/luks/nbdkit-luks-filter.pod | 2 +- filters/multi-conn/Makefile.am | 2 +- filters/multi-conn/multi-conn.c | 2 +- filters/multi-conn/nbdkit-multi-conn-filter.pod | 2 +- filters/nocache/Makefile.am | 2 +- filters/nocache/nbdkit-nocache-filter.pod | 2 +- filters/nocache/nocache.c | 2 +- filters/noextents/Makefile.am | 2 +- filters/noextents/nbdkit-noextents-filter.pod | 2 +- filters/noextents/noextents.c | 2 +- filters/nofilter/Makefile.am | 2 +- filters/nofilter/nbdkit-nofilter-filter.pod | 2 +- filters/nofilter/nofilter.c | 2 +- filters/noparallel/Makefile.am | 2 +- filters/noparallel/nbdkit-noparallel-filter.pod | 2 +- filters/noparallel/noparallel.c | 2 +- filters/nozero/Makefile.am | 2 +- filters/nozero/nbdkit-nozero-filter.pod | 2 +- filters/nozero/nozero.c | 2 +- filters/offset/Makefile.am | 2 +- filters/offset/nbdkit-offset-filter.pod | 2 +- filters/offset/offset.c | 2 +- filters/partition/Makefile.am | 2 +- filters/partition/nbdkit-partition-filter.pod | 2 +- filters/partition/partition-gpt.c | 2 +- filters/partition/partition-mbr.c | 2 +- filters/partition/partition.c | 2 +- filters/partition/partition.h | 2 +- filters/pause/Makefile.am | 2 +- filters/pause/nbdkit-pause-filter.pod | 2 +- filters/pause/pause.c | 2 +- filters/protect/Makefile.am | 2 +- filters/protect/nbdkit-protect-filter.pod | 2 +- filters/protect/protect.c | 2 +- filters/rate/Makefile.am | 2 +- filters/rate/bucket.c | 2 +- filters/rate/bucket.h | 2 +- filters/rate/nbdkit-rate-filter.pod | 2 +- filters/rate/rate.c | 2 +- filters/readahead/Makefile.am | 2 +- filters/readahead/bgthread.c | 2 +- filters/readahead/nbdkit-readahead-filter.pod | 2 +- filters/readahead/readahead.c | 2 +- filters/readahead/readahead.h | 2 +- filters/retry-request/Makefile.am | 2 +- filters/retry-request/nbdkit-retry-request-filter.pod | 2 +- filters/retry-request/retry-request.c | 2 +- filters/retry/Makefile.am | 2 +- filters/retry/nbdkit-retry-filter.pod | 2 +- filters/retry/retry.c | 2 +- filters/scan/Makefile.am | 2 +- filters/scan/bgthread.c | 2 +- filters/scan/nbdkit-scan-filter.pod | 2 +- filters/scan/scan.c | 2 +- filters/scan/scan.h | 2 +- filters/stats/Makefile.am | 2 +- filters/stats/nbdkit-stats-filter.pod | 2 +- filters/stats/stats.cpp | 2 +- filters/swab/Makefile.am | 2 +- filters/tar/Makefile.am | 2 +- filters/tar/nbdkit-tar-filter.pod | 2 +- filters/tar/tar.c | 2 +- filters/tls-fallback/Makefile.am | 2 +- filters/tls-fallback/nbdkit-tls-fallback-filter.pod | 2 +- filters/tls-fallback/tls-fallback.c | 2 +- filters/truncate/Makefile.am | 2 +- filters/truncate/nbdkit-truncate-filter.pod | 2 +- filters/truncate/truncate.c | 2 +- filters/xz/Makefile.am | 2 +- filters/xz/blkcache.c | 2 +- filters/xz/blkcache.h | 2 +- filters/xz/nbdkit-xz-filter.pod | 2 +- filters/xz/xz.c | 2 +- filters/xz/xzfile.c | 2 +- filters/xz/xzfile.h | 2 +- fuzzing/Makefile.am | 2 +- include/Makefile.am | 2 +- include/nbdkit-common.h | 2 +- include/nbdkit-filter.h | 2 +- include/nbdkit-plugin.h | 2 +- include/nbdkit-version.h.in | 2 +- plugins/Makefile.am | 2 +- plugins/S3/Makefile.am | 2 +- plugins/S3/S3.py | 2 +- plugins/S3/nbdkit-S3-plugin.pod | 2 +- plugins/blkio/Makefile.am | 2 +- plugins/blkio/blkio.c | 2 +- plugins/blkio/nbdkit-blkio-plugin.pod | 2 +- plugins/cc/Makefile.am | 2 +- plugins/cc/cc.c | 2 +- plugins/cc/nbdkit-cc-plugin.pod | 2 +- plugins/cdi/Makefile.am | 2 +- plugins/cdi/cdi.c | 2 +- plugins/cdi/nbdkit-cdi-plugin.pod | 2 +- plugins/curl/Makefile.am | 2 +- plugins/curl/curl.c | 2 +- plugins/curl/curldefs.h | 2 +- plugins/curl/nbdkit-curl-plugin.pod | 2 +- plugins/curl/pool.c | 2 +- plugins/curl/scripts.c | 2 +- plugins/data/Makefile.am | 2 +- plugins/data/data.c | 2 +- plugins/data/data.h | 2 +- plugins/data/disk2data.pl | 4 ++-- plugins/data/format.c | 2 +- plugins/data/format.h | 2 +- plugins/data/nbdkit-data-plugin.pod | 2 +- plugins/eval/Makefile.am | 2 +- plugins/eval/eval.c | 2 +- plugins/eval/nbdkit-eval-plugin.pod | 2 +- plugins/example1/Makefile.am | 2 +- plugins/example1/example1.c | 2 +- plugins/example1/nbdkit-example1-plugin.pod | 2 +- plugins/example2/Makefile.am | 2 +- plugins/example2/example2.c | 2 +- plugins/example2/nbdkit-example2-plugin.pod | 2 +- plugins/example2/winexample2.c | 2 +- plugins/example3/Makefile.am | 2 +- plugins/example3/example3.c | 2 +- plugins/example3/nbdkit-example3-plugin.pod | 2 +- plugins/example4/Makefile.am | 2 +- plugins/example4/example4.pl | 2 +- plugins/file/Makefile.am | 2 +- plugins/file/file.c | 2 +- plugins/file/nbdkit-file-plugin.pod | 2 +- plugins/file/winfile.c | 2 +- plugins/floppy/Makefile.am | 2 +- plugins/floppy/directory-lfn.c | 2 +- plugins/floppy/floppy.c | 2 +- plugins/floppy/nbdkit-floppy-plugin.pod | 2 +- plugins/floppy/virtual-floppy.c | 2 +- plugins/floppy/virtual-floppy.h | 2 +- plugins/full/Makefile.am | 2 +- plugins/full/full.c | 2 +- plugins/full/nbdkit-full-plugin.pod | 2 +- plugins/golang/Makefile.am | 2 +- plugins/golang/config-test.go | 2 +- plugins/golang/dump-plugin-examples.sh | 2 +- plugins/golang/examples/disk/disk.go | 2 +- plugins/golang/examples/dump-plugin/dumpplugin.go | 2 +- plugins/golang/examples/minimal/minimal.go | 2 +- plugins/golang/examples/ramdisk/ramdisk.go | 2 +- plugins/golang/nbdkit-golang-plugin.pod | 2 +- plugins/golang/src/libguestfs.org/nbdkit/nbdkit.go | 2 +- plugins/golang/src/libguestfs.org/nbdkit/utils.go | 2 +- plugins/golang/src/libguestfs.org/nbdkit/wrappers.go | 2 +- plugins/golang/src/libguestfs.org/nbdkit/wrappers.h | 2 +- plugins/guestfs/Makefile.am | 2 +- plugins/guestfs/guestfs-plugin.c | 2 +- plugins/guestfs/nbdkit-guestfs-plugin.pod | 2 +- plugins/info/Makefile.am | 2 +- plugins/info/info.c | 2 +- plugins/info/nbdkit-info-plugin.pod | 2 +- plugins/iso/Makefile.am | 2 +- plugins/iso/iso.c | 2 +- plugins/iso/nbdkit-iso-plugin.pod | 2 +- plugins/libvirt/Makefile.am | 2 +- plugins/libvirt/libvirt-plugin.c | 2 +- plugins/libvirt/nbdkit-libvirt-plugin.pod | 2 +- plugins/linuxdisk/Makefile.am | 2 +- plugins/linuxdisk/filesystem.c | 2 +- plugins/linuxdisk/linuxdisk.c | 2 +- plugins/linuxdisk/nbdkit-linuxdisk-plugin.pod | 2 +- plugins/linuxdisk/partition-gpt.c | 2 +- plugins/linuxdisk/virtual-disk.c | 2 +- plugins/linuxdisk/virtual-disk.h | 2 +- plugins/lua/Makefile.am | 2 +- plugins/lua/lua.c | 2 +- plugins/lua/nbdkit-lua-plugin.pod | 2 +- plugins/memory/Makefile.am | 2 +- plugins/memory/memory.c | 2 +- plugins/memory/nbdkit-memory-plugin.pod | 2 +- plugins/nbd/Makefile.am | 2 +- plugins/nbd/nbd.c | 2 +- plugins/nbd/nbdkit-nbd-plugin.pod | 2 +- plugins/null/Makefile.am | 2 +- plugins/null/nbdkit-null-plugin.pod | 2 +- plugins/null/null.c | 2 +- plugins/ocaml/Makefile.am | 2 +- plugins/ocaml/NBDKit.ml | 2 +- plugins/ocaml/NBDKit.mli | 2 +- plugins/ocaml/bindings.c | 2 +- plugins/ocaml/callbacks.h | 2 +- plugins/ocaml/nbdkit-ocaml-plugin.pod | 2 +- plugins/ocaml/plugin.c | 2 +- plugins/ocaml/plugin.h | 2 +- plugins/ondemand/Makefile.am | 2 +- plugins/ondemand/default-command.sh.in | 2 +- plugins/ondemand/nbdkit-ondemand-plugin.pod | 2 +- plugins/ondemand/ondemand.c | 2 +- plugins/partitioning/Makefile.am | 2 +- plugins/partitioning/nbdkit-partitioning-plugin.pod | 2 +- plugins/partitioning/partition-gpt.c | 2 +- plugins/partitioning/partition-mbr.c | 2 +- plugins/partitioning/partitioning.c | 2 +- plugins/partitioning/virtual-disk.c | 2 +- plugins/partitioning/virtual-disk.h | 2 +- plugins/pattern/Makefile.am | 2 +- plugins/pattern/nbdkit-pattern-plugin.pod | 2 +- plugins/pattern/pattern.c | 2 +- plugins/perl/Makefile.am | 2 +- plugins/perl/nbdkit-perl-plugin.pod | 2 +- plugins/perl/perl.c | 2 +- plugins/plugins.syms | 2 +- plugins/python/Makefile.am | 2 +- plugins/python/errors.c | 2 +- plugins/python/helpers.c | 2 +- plugins/python/modfunctions.c | 2 +- plugins/python/nbdkit-python-plugin.pod | 2 +- plugins/python/plugin.c | 2 +- plugins/python/plugin.h | 2 +- plugins/random/Makefile.am | 2 +- plugins/random/nbdkit-random-plugin.pod | 2 +- plugins/random/random.c | 2 +- plugins/ruby/Makefile.am | 2 +- plugins/ruby/nbdkit-ruby-plugin.pod | 2 +- plugins/ruby/ruby.c | 2 +- plugins/rust/Makefile.am | 2 +- plugins/sh/Makefile.am | 2 +- plugins/sh/call.c | 2 +- plugins/sh/call.h | 2 +- plugins/sh/methods.c | 2 +- plugins/sh/methods.h | 2 +- plugins/sh/nbdkit-sh-plugin.pod | 2 +- plugins/sh/sh.c | 2 +- plugins/sparse-random/Makefile.am | 2 +- plugins/sparse-random/nbdkit-sparse-random-plugin.pod | 2 +- plugins/sparse-random/sparse-random.c | 2 +- plugins/split/Makefile.am | 2 +- plugins/split/nbdkit-split-plugin.pod | 2 +- plugins/split/split.c | 2 +- plugins/ssh/Makefile.am | 2 +- plugins/ssh/nbdkit-ssh-plugin.pod | 2 +- plugins/ssh/ssh.c | 2 +- plugins/tcl/Makefile.am | 2 +- plugins/tcl/nbdkit-tcl-plugin.pod | 2 +- plugins/tcl/tcl.c | 2 +- plugins/tmpdisk/Makefile.am | 2 +- plugins/tmpdisk/default-command.sh.in | 2 +- plugins/tmpdisk/nbdkit-tmpdisk-plugin.pod | 2 +- plugins/tmpdisk/tmpdisk.c | 2 +- plugins/torrent/Makefile.am | 2 +- plugins/torrent/nbdkit-torrent-plugin.pod | 2 +- plugins/torrent/torrent.cpp | 2 +- plugins/vddk/Makefile.am | 2 +- plugins/vddk/nbdkit-vddk-plugin.pod | 2 +- plugins/vddk/reexec.c | 2 +- plugins/vddk/stats.c | 2 +- plugins/vddk/utils.c | 2 +- plugins/vddk/vddk-structs.h | 2 +- plugins/vddk/vddk-stubs.h | 2 +- plugins/vddk/vddk.c | 2 +- plugins/vddk/vddk.h | 2 +- plugins/vddk/worker.c | 2 +- plugins/zero/Makefile.am | 2 +- plugins/zero/nbdkit-zero-plugin.pod | 2 +- plugins/zero/zero.c | 2 +- podwrapper.pl.in | 4 ++-- scripts/git.orderfile | 2 +- server/Makefile.am | 2 +- server/backend.c | 2 +- server/background.c | 2 +- server/captive.c | 2 +- server/connections.c | 2 +- server/crypto.c | 2 +- server/debug-flags.c | 2 +- server/debug.c | 2 +- server/exports.c | 2 +- server/extents.c | 2 +- server/filters.c | 2 +- server/fuzzer.c | 2 +- server/internal.h | 2 +- server/local/nbdkit.pc.in | 2 +- server/locks.c | 2 +- server/log-stderr.c | 2 +- server/log-syslog.c | 2 +- server/log.c | 2 +- server/main.c | 2 +- server/nbdkit.pc.in | 2 +- server/nbdkit.syms | 2 +- server/options.h | 2 +- server/plugins.c | 2 +- server/protocol-handshake-newstyle.c | 2 +- server/protocol-handshake-oldstyle.c | 2 +- server/protocol-handshake.c | 2 +- server/protocol.c | 2 +- server/public.c | 2 +- server/quit.c | 2 +- server/signals.c | 2 +- server/socket-activation.c | 2 +- server/sockets.c | 2 +- server/test-public.c | 2 +- server/threadlocal.c | 2 +- server/usergroup.c | 2 +- server/vfprintf.c | 2 +- tests/Makefile.am | 2 +- tests/dummy-vddk.c | 2 +- tests/functions.sh.in | 2 +- tests/generate-file-data.sh | 2 +- tests/make-pki.sh.in | 2 +- tests/make-psk.sh | 2 +- tests/pycodestyle.sh | 2 +- tests/python-exception.py | 2 +- tests/python-export-list.py | 2 +- tests/python-export-name.py | 2 +- tests/python-thread-model.py | 2 +- tests/test-S3-unit.sh | 2 +- tests/test-S3.sh | 2 +- tests/test-S3/boto3/__init__.py | 2 +- tests/test-S3/botocore/exceptions.py | 2 +- tests/test-ansi-c-plugin.c | 2 +- tests/test-ansi-c.sh | 2 +- tests/test-binary.sh | 2 +- tests/test-blkio.sh | 2 +- tests/test-block-size-constraints.sh | 2 +- tests/test-blocksize-default.sh | 2 +- tests/test-blocksize-error-policy.sh | 2 +- tests/test-blocksize-extents.sh | 2 +- tests/test-blocksize-policy.sh | 2 +- tests/test-blocksize-sharding.sh | 2 +- tests/test-blocksize-write-disconnect.sh | 2 +- tests/test-blocksize.sh | 2 +- tests/test-cache-block-size.sh | 2 +- tests/test-cache-max-size.sh | 2 +- tests/test-cache-on-read-caches.sh | 2 +- tests/test-cache-on-read.sh | 2 +- tests/test-cache-unaligned.sh | 2 +- tests/test-cache.sh | 2 +- tests/test-cacheextents.sh | 2 +- tests/test-captive-tls.sh | 2 +- tests/test-captive.sh | 2 +- tests/test-cc-cpp.cpp | 2 +- tests/test-cc-cpp.sh | 2 +- tests/test-cc-ocaml.sh | 2 +- tests/test-cc.sh | 2 +- tests/test-cdi.sh | 2 +- tests/test-checkwrite-bounds.sh | 2 +- tests/test-checkwrite-fail.sh | 2 +- tests/test-checkwrite.sh | 2 +- tests/test-client-death-tls.sh | 2 +- tests/test-client-death.sh | 2 +- tests/test-connect.c | 2 +- tests/test-cow-block-size.sh | 2 +- tests/test-cow-extents-large.sh | 2 +- tests/test-cow-extents1.sh | 2 +- tests/test-cow-extents2.sh | 2 +- tests/test-cow-null.sh | 2 +- tests/test-cow-on-read-caches.sh | 2 +- tests/test-cow-on-read.sh | 2 +- tests/test-cow-unaligned.sh | 2 +- tests/test-cow.sh | 2 +- tests/test-curl-cookie-script.c | 2 +- tests/test-curl-file.sh | 2 +- tests/test-curl-header-script-fail.script | 2 +- tests/test-curl-header-script-fail.sh | 2 +- tests/test-curl-header-script.c | 2 +- tests/test-curl.c | 2 +- tests/test-cxx-filter.cpp | 2 +- tests/test-cxx-plugin.cpp | 2 +- tests/test-cxx.sh | 2 +- tests/test-data-64b.sh | 2 +- tests/test-data-7E.sh | 2 +- tests/test-data-bad.sh | 2 +- tests/test-data-base64.sh | 2 +- tests/test-data-extents.sh | 2 +- tests/test-data-file.sh | 2 +- tests/test-data-format.sh | 2 +- tests/test-data-optimum.sh | 2 +- tests/test-data-partition.sh | 2 +- tests/test-data-random-slice.sh | 2 +- tests/test-data-random-slice2.sh | 2 +- tests/test-data-raw-copy.sh | 2 +- tests/test-data-raw.sh | 2 +- tests/test-data-reloffset.sh | 2 +- tests/test-data-sectors.sh | 2 +- tests/test-data-size.sh | 2 +- tests/test-data.c | 2 +- tests/test-debug-flags.sh | 2 +- tests/test-delay-close.sh | 2 +- tests/test-delay-open.sh | 2 +- tests/test-delay-shutdown.sh | 2 +- tests/test-delay.c | 2 +- tests/test-disconnect-plugin.c | 2 +- tests/test-disconnect-tls.sh | 2 +- tests/test-disconnect.sh | 2 +- tests/test-disk2data.sh | 2 +- tests/test-dump-config-major-1.sh | 2 +- tests/test-dump-config-version-major-minor.sh | 2 +- tests/test-dump-config.sh | 2 +- tests/test-dump-plugin-and-single.sh | 2 +- tests/test-dump-plugin-example1.sh | 2 +- tests/test-dump-plugin-example2.sh | 2 +- tests/test-dump-plugin-example4.sh | 2 +- tests/test-dump-plugin-name.sh | 2 +- tests/test-dump-plugin-thread-model.sh | 2 +- tests/test-dump-plugin.sh | 2 +- tests/test-eflags.sh | 2 +- tests/test-error-triggered.sh | 2 +- tests/test-error0.sh | 2 +- tests/test-error10.sh | 2 +- tests/test-error100.sh | 2 +- tests/test-eval-cache.sh | 2 +- tests/test-eval-disconnect.sh | 2 +- tests/test-eval-dump-plugin.sh | 2 +- tests/test-eval-exports.sh | 2 +- tests/test-eval-file.sh | 2 +- tests/test-eval.sh | 2 +- tests/test-exit-with-parent.c | 2 +- tests/test-exitlast.sh | 2 +- tests/test-exitwhen-file-already-created.sh | 2 +- tests/test-exitwhen-file-created-reject-new.sh | 2 +- tests/test-exitwhen-file-created-when-idle.sh | 2 +- tests/test-exitwhen-file-created.sh | 2 +- tests/test-exitwhen-file-deleted.sh | 2 +- tests/test-exitwhen-pipe-closed.c | 2 +- tests/test-exitwhen-process-exits.sh | 2 +- tests/test-exitwhen-script.sh | 2 +- tests/test-export-info.sh | 2 +- tests/test-export-name.sh | 2 +- tests/test-exportname.sh | 2 +- tests/test-ext2-exportname.sh | 2 +- tests/test-ext2.c | 2 +- tests/test-extentlist.sh | 2 +- tests/test-file-block.c | 2 +- tests/test-file-dir.sh | 2 +- tests/test-file-dirfd.sh | 2 +- tests/test-file-extents.sh | 2 +- tests/test-file-fd.sh | 2 +- tests/test-file-readonly.sh | 2 +- tests/test-file.sh | 2 +- tests/test-floppy.sh | 2 +- tests/test-flush-plugin.c | 2 +- tests/test-flush.sh | 2 +- tests/test-foreground.sh | 2 +- tests/test-fua.sh | 2 +- tests/test-full.sh | 2 +- tests/test-golang.c | 2 +- tests/test-gzip-curl.c | 2 +- tests/test-gzip.c | 2 +- tests/test-help-example1.sh | 2 +- tests/test-help-plugin.sh | 2 +- tests/test-help.sh | 2 +- tests/test-info-address.sh | 2 +- tests/test-info-base64.sh | 2 +- tests/test-info-conntime.sh | 2 +- tests/test-info-raw.sh | 2 +- tests/test-info-time.sh | 2 +- tests/test-info-uptime.sh | 2 +- tests/test-ip-filter-anyunix.sh | 2 +- tests/test-ip-filter-anyvsock.sh | 2 +- tests/test-ip-filter-gid.sh | 2 +- tests/test-ip-filter-pid.sh | 2 +- tests/test-ip-filter-uid.sh | 2 +- tests/test-ip-filter.sh | 2 +- tests/test-ipv4-lo.sh | 2 +- tests/test-ipv6-lo.sh | 2 +- tests/test-iso.sh | 2 +- tests/test-just-filter-header.c | 2 +- tests/test-just-plugin-header.c | 2 +- tests/test-lang-plugins.c | 2 +- tests/test-layers-filter.c | 2 +- tests/test-layers-plugin.c | 2 +- tests/test-layers.c | 2 +- tests/test-layers.sh | 2 +- tests/test-limit.sh | 2 +- tests/test-linuxdisk-copy-out.sh | 2 +- tests/test-linuxdisk.sh | 2 +- tests/test-log-error.sh | 2 +- tests/test-log-extents.sh | 2 +- tests/test-log-script-info.sh | 2 +- tests/test-log-script.sh | 2 +- tests/test-log.sh | 2 +- tests/test-long-name.sh | 2 +- tests/test-long-options.sh | 2 +- tests/test-luks-copy-zero.sh | 2 +- tests/test-luks-copy.sh | 2 +- tests/test-luks-info.sh | 2 +- tests/test-manual.sh | 2 +- tests/test-memory-allocator-malloc-mlock.sh | 2 +- tests/test-memory-allocator-malloc.sh | 2 +- tests/test-memory-largest-for-qemu.sh | 2 +- tests/test-memory-largest.sh | 2 +- tests/test-memory.c | 2 +- tests/test-multi-conn-name.sh | 2 +- tests/test-multi-conn-plugin.sh | 2 +- tests/test-multi-conn.sh | 2 +- tests/test-nbd-block-size.sh | 2 +- tests/test-nbd-client-tls.sh | 2 +- tests/test-nbd-client.sh | 2 +- tests/test-nbd-dynamic-content.sh | 2 +- tests/test-nbd-dynamic-list.sh | 2 +- tests/test-nbd-extents.sh | 2 +- tests/test-nbd-qcow2.sh | 2 +- tests/test-nbd-tls-psk.sh | 2 +- tests/test-nbd-tls.sh | 2 +- tests/test-nbd-vsock.sh | 2 +- tests/test-nbd.c | 2 +- tests/test-nbdkit-backend-debug.sh | 2 +- tests/test-newstyle.c | 2 +- tests/test-nofilter.sh | 2 +- tests/test-not-linked-to-libssl.sh | 2 +- tests/test-nozero.sh | 2 +- tests/test-null-extents.sh | 2 +- tests/test-null.c | 2 +- tests/test-ocaml-errorcodes.c | 2 +- tests/test-ocaml.c | 2 +- tests/test-offset-extents.sh | 2 +- tests/test-offset-truncate.sh | 2 +- tests/test-offset.c | 2 +- tests/test-offset2.sh | 2 +- tests/test-old-plugins.sh | 2 +- tests/test-oldstyle.c | 2 +- tests/test-ondemand-list.sh | 2 +- tests/test-ondemand-locking.sh | 2 +- tests/test-ondemand.sh | 2 +- tests/test-parallel-file.sh | 2 +- tests/test-parallel-nbd.sh | 2 +- tests/test-parallel-sh.sh | 2 +- tests/test-partition1.sh | 2 +- tests/test-partition2.sh | 2 +- tests/test-partitioning1.sh | 2 +- tests/test-partitioning2.sh | 2 +- tests/test-partitioning3.sh | 2 +- tests/test-partitioning4.sh | 2 +- tests/test-partitioning5.sh | 2 +- tests/test-partitioning6.sh | 2 +- tests/test-pattern-largest-for-qemu.sh | 2 +- tests/test-pattern-largest.sh | 2 +- tests/test-pattern.sh | 2 +- tests/test-pause.c | 2 +- tests/test-plugin-docs.sh | 2 +- tests/test-probe-filter.sh | 2 +- tests/test-probe-plugin.sh | 2 +- tests/test-protect-ranges.sh | 2 +- tests/test-protect.c | 2 +- tests/test-python-exception.sh | 2 +- tests/test-python-export-list.sh | 2 +- tests/test-python-export-name.sh | 2 +- tests/test-python-plugin.py | 2 +- tests/test-python-thread-model.sh | 2 +- tests/test-python.sh | 2 +- tests/test-random-copy.sh | 2 +- tests/test-random-sock.sh | 2 +- tests/test-random.c | 2 +- tests/test-rate-dynamic.sh | 2 +- tests/test-rate.sh | 2 +- tests/test-read-password-interactive.sh | 2 +- tests/test-read-password-plugin.c | 2 +- tests/test-read-password.sh | 2 +- tests/test-readahead-copy.sh | 2 +- tests/test-readahead.sh | 2 +- tests/test-retry-extents.sh | 2 +- tests/test-retry-open.sh | 2 +- tests/test-retry-readonly.sh | 2 +- tests/test-retry-reopen-fail.sh | 2 +- tests/test-retry-request-mirror.c | 2 +- tests/test-retry-request-open.sh | 2 +- tests/test-retry-request.sh | 2 +- tests/test-retry-size.sh | 2 +- tests/test-retry-zero-flags.sh | 2 +- tests/test-retry.sh | 2 +- tests/test-scan-copy.sh | 2 +- tests/test-scan-info.sh | 2 +- tests/test-sh-errors.sh | 2 +- tests/test-sh-extents.sh | 2 +- tests/test-sh-tmpdir-leak.sh | 2 +- tests/test-shebang-cc-ocaml.sh | 2 +- tests/test-shebang-cc.sh | 2 +- tests/test-shebang-perl.sh | 2 +- tests/test-shebang-python.sh | 2 +- tests/test-shebang-ruby.sh | 2 +- tests/test-short-options.sh | 2 +- tests/test-shutdown-plugin.c | 2 +- tests/test-shutdown.sh | 2 +- tests/test-single-from-file.sh | 2 +- tests/test-single-sh.sh | 2 +- tests/test-single.sh | 2 +- tests/test-socket-activation.c | 2 +- tests/test-sparse-random-copy.sh | 2 +- tests/test-sparse-random-info.sh | 2 +- tests/test-split-extents.sh | 2 +- tests/test-split.c | 2 +- tests/test-ssh.sh | 2 +- tests/test-start.sh | 2 +- tests/test-stdio-plugin.c | 2 +- tests/test-stdio.sh | 2 +- tests/test-swab-16r.sh | 2 +- tests/test-swab-16w.sh | 2 +- tests/test-swab-32r.sh | 2 +- tests/test-swab-32w.sh | 2 +- tests/test-swab-64r.sh | 2 +- tests/test-swab-64w.sh | 2 +- tests/test-swab-8.sh | 2 +- tests/test-swab-extents.sh | 2 +- tests/test-swap.sh | 2 +- tests/test-synopsis.sh | 2 +- tests/test-tar-gzip-curl.c | 2 +- tests/test-tar-info-xz.sh | 2 +- tests/test-tar-info.sh | 2 +- tests/test-tar-xz-curl.c | 2 +- tests/test-tar.sh | 2 +- tests/test-tls-fallback.sh | 2 +- tests/test-tls-psk.sh | 2 +- tests/test-tls.sh | 2 +- tests/test-tmpdisk-command.sh | 2 +- tests/test-tmpdisk.c | 2 +- tests/test-truncate-extents.sh | 2 +- tests/test-truncate1.sh | 2 +- tests/test-truncate2.sh | 2 +- tests/test-truncate3.sh | 2 +- tests/test-truncate4.sh | 2 +- tests/test-vddk-dump-plugin.sh | 2 +- tests/test-vddk-password-fd.sh | 2 +- tests/test-vddk-password-interactive.sh | 2 +- tests/test-vddk-real-create.sh | 2 +- tests/test-vddk-real-dump-plugin.sh | 2 +- tests/test-vddk-real.sh | 2 +- tests/test-vddk-reexec.sh | 2 +- tests/test-vddk-run.sh | 2 +- tests/test-vddk.c | 2 +- tests/test-version-example1.sh | 2 +- tests/test-version-filter.sh | 2 +- tests/test-version-plugin.sh | 2 +- tests/test-version.sh | 2 +- tests/test-vsock.sh | 2 +- tests/test-xz-curl.c | 2 +- tests/test-xz.c | 2 +- tests/test-zero.sh | 2 +- tests/test.c | 2 +- tests/test.h | 2 +- tests/test_ocaml_errorcodes_plugin.ml | 2 +- tests/test_ocaml_plugin.ml | 2 +- tests/test_python.py | 2 +- tests/web-server.c | 2 +- tests/web-server.h | 2 +- valgrind/Makefile.am | 2 +- valgrind/ext2fs.suppressions | 2 +- valgrind/glibc.suppressions | 2 +- valgrind/gnutls.suppressions | 2 +- valgrind/nbdkit.suppressions | 2 +- valgrind/ocaml.suppressions | 2 +- valgrind/perl.suppressions | 2 +- valgrind/sh.suppressions | 2 +- wrapper.c | 2 +- 859 files changed, 861 insertions(+), 861 deletions(-) diff --git a/LICENSE b/LICENSE index 2582495e..f4e79512 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ nbdkit -Copyright (C) 2013-2020 Red Hat Inc. +Copyright Red Hat Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/Makefile.am b/Makefile.am index 9bd94253..b1fcc815 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/README.md b/README.md index 2e58d576..ca792b08 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ https://gitlab.com/nbdkit/nbdkit ## License -This software is copyright (C) Red Hat Inc. and licensed under a BSD +This software is Copyright Red Hat and licensed under a BSD license. See [LICENSE](LICENSE) for details. ## Building from source diff --git a/bash-completion/Makefile.am b/bash-completion/Makefile.am index ead31b13..51b8ea1e 100644 --- a/bash-completion/Makefile.am +++ b/bash-completion/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/bash-completion/nbdkit b/bash-completion/nbdkit index c788adad..90d0f226 100644 --- a/bash-completion/nbdkit +++ b/bash-completion/nbdkit @@ -1,5 +1,5 @@ # nbdkit bash completion script -*- shell-script -*- -# Copyright (C) 2010-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/common-rules.mk b/common-rules.mk index d808db24..f7f4eed4 100644 --- a/common-rules.mk +++ b/common-rules.mk @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/common/allocators/Makefile.am b/common/allocators/Makefile.am index e797d72c..8ad31e78 100644 --- a/common/allocators/Makefile.am +++ b/common/allocators/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/common/allocators/allocator-internal.h b/common/allocators/allocator-internal.h index f73291ab..66a4970f 100644 --- a/common/allocators/allocator-internal.h +++ b/common/allocators/allocator-internal.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/allocators/allocator.c b/common/allocators/allocator.c index ab742f4e..6c2d8099 100644 --- a/common/allocators/allocator.c +++ b/common/allocators/allocator.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/allocators/allocator.h b/common/allocators/allocator.h index c8ec1af1..03034ba6 100644 --- a/common/allocators/allocator.h +++ b/common/allocators/allocator.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/allocators/malloc.c b/common/allocators/malloc.c index 52dea410..20772a56 100644 --- a/common/allocators/malloc.c +++ b/common/allocators/malloc.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/allocators/sparse.c b/common/allocators/sparse.c index de90c6a6..0f1e9aa8 100644 --- a/common/allocators/sparse.c +++ b/common/allocators/sparse.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/allocators/zstd.c b/common/allocators/zstd.c index ff2e950e..fc579ba4 100644 --- a/common/allocators/zstd.c +++ b/common/allocators/zstd.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/bitmap/Makefile.am b/common/bitmap/Makefile.am index 6c752f5d..3b7f4b44 100644 --- a/common/bitmap/Makefile.am +++ b/common/bitmap/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/common/bitmap/bitmap.c b/common/bitmap/bitmap.c index 89c815ca..ea61b70b 100644 --- a/common/bitmap/bitmap.c +++ b/common/bitmap/bitmap.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/bitmap/bitmap.h b/common/bitmap/bitmap.h index 379aa1b7..742c793e 100644 --- a/common/bitmap/bitmap.h +++ b/common/bitmap/bitmap.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/bitmap/test-bitmap.c b/common/bitmap/test-bitmap.c index 657cc9aa..6b7283ad 100644 --- a/common/bitmap/test-bitmap.c +++ b/common/bitmap/test-bitmap.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/gpt/Makefile.am b/common/gpt/Makefile.am index b40206da..e77d320c 100644 --- a/common/gpt/Makefile.am +++ b/common/gpt/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/common/gpt/efi-crc32.h b/common/gpt/efi-crc32.h index ea055495..85a8b638 100644 --- a/common/gpt/efi-crc32.h +++ b/common/gpt/efi-crc32.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/gpt/gpt.h b/common/gpt/gpt.h index 3935dcf1..d3220808 100644 --- a/common/gpt/gpt.h +++ b/common/gpt/gpt.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/Makefile.am b/common/include/Makefile.am index bbf00641..3162e92c 100644 --- a/common/include/Makefile.am +++ b/common/include/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/common/include/ansi-colours.h b/common/include/ansi-colours.h index ebb0b26f..82a51604 100644 --- a/common/include/ansi-colours.h +++ b/common/include/ansi-colours.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/array-size.h b/common/include/array-size.h index 6f0a1ae8..d915aad3 100644 --- a/common/include/array-size.h +++ b/common/include/array-size.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/ascii-ctype.h b/common/include/ascii-ctype.h index a55dee11..191a0f27 100644 --- a/common/include/ascii-ctype.h +++ b/common/include/ascii-ctype.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/ascii-string.h b/common/include/ascii-string.h index 0a60d5f4..b0df8c74 100644 --- a/common/include/ascii-string.h +++ b/common/include/ascii-string.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/byte-swapping.h b/common/include/byte-swapping.h index fce56df5..085ba475 100644 --- a/common/include/byte-swapping.h +++ b/common/include/byte-swapping.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/checked-overflow.h b/common/include/checked-overflow.h index 4ec72387..47a0c6f6 100644 --- a/common/include/checked-overflow.h +++ b/common/include/checked-overflow.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/compiler-macros.h b/common/include/compiler-macros.h index beb3f4fe..36c435ee 100644 --- a/common/include/compiler-macros.h +++ b/common/include/compiler-macros.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/hexdigit.h b/common/include/hexdigit.h index c72c2c9f..96af33ad 100644 --- a/common/include/hexdigit.h +++ b/common/include/hexdigit.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/isaligned.h b/common/include/isaligned.h index 23504067..60b60dfc 100644 --- a/common/include/isaligned.h +++ b/common/include/isaligned.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/ispowerof2.h b/common/include/ispowerof2.h index c5bcb0c8..f067caf0 100644 --- a/common/include/ispowerof2.h +++ b/common/include/ispowerof2.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/iszero.h b/common/include/iszero.h index 657ed5ba..120bf15a 100644 --- a/common/include/iszero.h +++ b/common/include/iszero.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/minmax.h b/common/include/minmax.h index 8b0e6b7a..782e348b 100644 --- a/common/include/minmax.h +++ b/common/include/minmax.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/nextnonzero.h b/common/include/nextnonzero.h index fb62cb48..f2ee393d 100644 --- a/common/include/nextnonzero.h +++ b/common/include/nextnonzero.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/random.h b/common/include/random.h index 2b849d63..86b25882 100644 --- a/common/include/random.h +++ b/common/include/random.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/rounding.h b/common/include/rounding.h index 744964ed..d0ec7aa6 100644 --- a/common/include/rounding.h +++ b/common/include/rounding.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/static-assert.h b/common/include/static-assert.h index 5a564f89..6ab1777e 100644 --- a/common/include/static-assert.h +++ b/common/include/static-assert.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2023 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/test-array-size.c b/common/include/test-array-size.c index 6244ec1e..4882d3a7 100644 --- a/common/include/test-array-size.c +++ b/common/include/test-array-size.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2020-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/test-ascii-ctype.c b/common/include/test-ascii-ctype.c index 4fbb0259..aefe1cc6 100644 --- a/common/include/test-ascii-ctype.c +++ b/common/include/test-ascii-ctype.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/test-ascii-string.c b/common/include/test-ascii-string.c index 35308f27..821ee19b 100644 --- a/common/include/test-ascii-string.c +++ b/common/include/test-ascii-string.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/test-byte-swapping.c b/common/include/test-byte-swapping.c index fa62ecfe..417293b9 100644 --- a/common/include/test-byte-swapping.c +++ b/common/include/test-byte-swapping.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/test-checked-overflow.c b/common/include/test-checked-overflow.c index ba1a6e9b..208c3b68 100644 --- a/common/include/test-checked-overflow.c +++ b/common/include/test-checked-overflow.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/test-isaligned.c b/common/include/test-isaligned.c index cb77ff77..13a6b56f 100644 --- a/common/include/test-isaligned.c +++ b/common/include/test-isaligned.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/test-ispowerof2.c b/common/include/test-ispowerof2.c index fd880fa3..9620192f 100644 --- a/common/include/test-ispowerof2.c +++ b/common/include/test-ispowerof2.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/test-iszero.c b/common/include/test-iszero.c index 732dac5a..3ec85daa 100644 --- a/common/include/test-iszero.c +++ b/common/include/test-iszero.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/test-minmax.c b/common/include/test-minmax.c index 32bc8a11..dcbc87df 100644 --- a/common/include/test-minmax.c +++ b/common/include/test-minmax.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/test-nextnonzero.c b/common/include/test-nextnonzero.c index 8ab335c2..6dd47a47 100644 --- a/common/include/test-nextnonzero.c +++ b/common/include/test-nextnonzero.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/test-random.c b/common/include/test-random.c index 7962b153..b111e0ab 100644 --- a/common/include/test-random.c +++ b/common/include/test-random.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/test-tvdiff.c b/common/include/test-tvdiff.c index abefb2e7..6693db3b 100644 --- a/common/include/test-tvdiff.c +++ b/common/include/test-tvdiff.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/tvdiff.h b/common/include/tvdiff.h index cec83458..6da53413 100644 --- a/common/include/tvdiff.h +++ b/common/include/tvdiff.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/unique-name.h b/common/include/unique-name.h index 2cd86d49..c5830b4e 100644 --- a/common/include/unique-name.h +++ b/common/include/unique-name.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/include/unix-path-max.h b/common/include/unix-path-max.h index b63ae8d9..71d03cf7 100644 --- a/common/include/unix-path-max.h +++ b/common/include/unix-path-max.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/protocol/Makefile.am b/common/protocol/Makefile.am index 5ff5241d..48a16a90 100644 --- a/common/protocol/Makefile.am +++ b/common/protocol/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/common/protocol/generate-protostrings.sh.in b/common/protocol/generate-protostrings.sh.in index 35aa0712..4a372e81 100755 --- a/common/protocol/generate-protostrings.sh.in +++ b/common/protocol/generate-protostrings.sh.in @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/common/protocol/nbd-protocol.h b/common/protocol/nbd-protocol.h index 93536686..0217891e 100644 --- a/common/protocol/nbd-protocol.h +++ b/common/protocol/nbd-protocol.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/protocol/protostrings.h b/common/protocol/protostrings.h index 056433bc..94e418e8 100644 --- a/common/protocol/protostrings.h +++ b/common/protocol/protostrings.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/regions/Makefile.am b/common/regions/Makefile.am index 7927e462..30a9199d 100644 --- a/common/regions/Makefile.am +++ b/common/regions/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/common/regions/regions.c b/common/regions/regions.c index 26f9c95e..2eb0ad66 100644 --- a/common/regions/regions.c +++ b/common/regions/regions.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/regions/regions.h b/common/regions/regions.h index 1325324b..141565ce 100644 --- a/common/regions/regions.h +++ b/common/regions/regions.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/Makefile.am b/common/replacements/Makefile.am index 9ad59148..29e7a39d 100644 --- a/common/replacements/Makefile.am +++ b/common/replacements/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/common/replacements/fdatasync.c b/common/replacements/fdatasync.c index 1487aad8..17e46b70 100644 --- a/common/replacements/fdatasync.c +++ b/common/replacements/fdatasync.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/fdatasync.h b/common/replacements/fdatasync.h index 426e0612..e3ee265a 100644 --- a/common/replacements/fdatasync.h +++ b/common/replacements/fdatasync.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/fsync.c b/common/replacements/fsync.c index 0224a957..1328008b 100644 --- a/common/replacements/fsync.c +++ b/common/replacements/fsync.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/fsync.h b/common/replacements/fsync.h index 5561205d..5442bd73 100644 --- a/common/replacements/fsync.h +++ b/common/replacements/fsync.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/get_current_dir_name.c b/common/replacements/get_current_dir_name.c index 96cbdbb0..ed03383b 100644 --- a/common/replacements/get_current_dir_name.c +++ b/common/replacements/get_current_dir_name.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/get_current_dir_name.h b/common/replacements/get_current_dir_name.h index 658d4ea5..064f51ba 100644 --- a/common/replacements/get_current_dir_name.h +++ b/common/replacements/get_current_dir_name.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/getline.h b/common/replacements/getline.h index 6034d85d..8ee6f870 100644 --- a/common/replacements/getline.h +++ b/common/replacements/getline.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/open_memstream.c b/common/replacements/open_memstream.c index bff880d3..2185ef83 100644 --- a/common/replacements/open_memstream.c +++ b/common/replacements/open_memstream.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/open_memstream.h b/common/replacements/open_memstream.h index 5b6e1fd6..f7d61fab 100644 --- a/common/replacements/open_memstream.h +++ b/common/replacements/open_memstream.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/openlog.c b/common/replacements/openlog.c index 1081d319..a1e5e6d8 100644 --- a/common/replacements/openlog.c +++ b/common/replacements/openlog.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/poll.c b/common/replacements/poll.c index 51531880..a11e2ee9 100644 --- a/common/replacements/poll.c +++ b/common/replacements/poll.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/poll.h b/common/replacements/poll.h index 81e50e3d..01b5105d 100644 --- a/common/replacements/poll.h +++ b/common/replacements/poll.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/posix_memalign.c b/common/replacements/posix_memalign.c index 8d34aeff..10a36ac9 100644 --- a/common/replacements/posix_memalign.c +++ b/common/replacements/posix_memalign.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/posix_memalign.h b/common/replacements/posix_memalign.h index 752e34ed..4c07891a 100644 --- a/common/replacements/posix_memalign.h +++ b/common/replacements/posix_memalign.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/pread.c b/common/replacements/pread.c index 28a6aacc..12f29305 100644 --- a/common/replacements/pread.c +++ b/common/replacements/pread.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/pread.h b/common/replacements/pread.h index cf90c330..1e439f8c 100644 --- a/common/replacements/pread.h +++ b/common/replacements/pread.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/pwrite.c b/common/replacements/pwrite.c index 54d40fe1..f1068f5a 100644 --- a/common/replacements/pwrite.c +++ b/common/replacements/pwrite.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/pwrite.h b/common/replacements/pwrite.h index bf02c7df..1b2cfebe 100644 --- a/common/replacements/pwrite.h +++ b/common/replacements/pwrite.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/realpath.c b/common/replacements/realpath.c index 4562e8c3..437f635f 100644 --- a/common/replacements/realpath.c +++ b/common/replacements/realpath.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/realpath.h b/common/replacements/realpath.h index f9d32bb4..5e3a76be 100644 --- a/common/replacements/realpath.h +++ b/common/replacements/realpath.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/strndup.h b/common/replacements/strndup.h index 65bcde07..b0429eec 100644 --- a/common/replacements/strndup.h +++ b/common/replacements/strndup.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/sysconf.c b/common/replacements/sysconf.c index 3aae6cc0..f43cf546 100644 --- a/common/replacements/sysconf.c +++ b/common/replacements/sysconf.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/sysconf.h b/common/replacements/sysconf.h index 33a36dab..9d9c1a8e 100644 --- a/common/replacements/sysconf.h +++ b/common/replacements/sysconf.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/syslog.c b/common/replacements/syslog.c index 89ef73a7..fb7a957e 100644 --- a/common/replacements/syslog.c +++ b/common/replacements/syslog.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/syslog.h b/common/replacements/syslog.h index 6918a4a3..e5111d5e 100644 --- a/common/replacements/syslog.h +++ b/common/replacements/syslog.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/test-current-dir-name.c b/common/replacements/test-current-dir-name.c index a9bb8de0..5c6038b2 100644 --- a/common/replacements/test-current-dir-name.c +++ b/common/replacements/test-current-dir-name.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/vsyslog.c b/common/replacements/vsyslog.c index d1ab267e..9ac5789d 100644 --- a/common/replacements/vsyslog.c +++ b/common/replacements/vsyslog.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/replacements/win32/Makefile.am b/common/replacements/win32/Makefile.am index 8b91709e..9b5a68db 100644 --- a/common/replacements/win32/Makefile.am +++ b/common/replacements/win32/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/common/replacements/win32/nbdkit-cat.mc b/common/replacements/win32/nbdkit-cat.mc index dc43ad01..9bf1b0a8 100644 --- a/common/replacements/win32/nbdkit-cat.mc +++ b/common/replacements/win32/nbdkit-cat.mc @@ -1,5 +1,5 @@ ;// nbdkit -;// Copyright (C) 2019-2020 Red Hat Inc. +;// Copyright Red Hat ;// ;// Redistribution and use in source and binary forms, with or without ;// modification, are permitted provided that the following conditions are diff --git a/common/utils/Makefile.am b/common/utils/Makefile.am index c53a4416..f28c8d2f 100644 --- a/common/utils/Makefile.am +++ b/common/utils/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/common/utils/bench.h b/common/utils/bench.h index 770980a8..f1dc0fb1 100644 --- a/common/utils/bench.h +++ b/common/utils/bench.h @@ -1,5 +1,5 @@ /* libnbd - * Copyright (C) 2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/utils/cleanup-nbdkit.c b/common/utils/cleanup-nbdkit.c index e7553c73..ec1ebe43 100644 --- a/common/utils/cleanup-nbdkit.c +++ b/common/utils/cleanup-nbdkit.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/utils/cleanup.c b/common/utils/cleanup.c index 541a7a68..2308549b 100644 --- a/common/utils/cleanup.c +++ b/common/utils/cleanup.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/utils/cleanup.h b/common/utils/cleanup.h index 0ee12276..dd0c2719 100644 --- a/common/utils/cleanup.h +++ b/common/utils/cleanup.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/utils/const-string-vector.h b/common/utils/const-string-vector.h index d6d847a8..621e543f 100644 --- a/common/utils/const-string-vector.h +++ b/common/utils/const-string-vector.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2020-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/utils/environ.c b/common/utils/environ.c index 6777d4d4..4fa9d2c0 100644 --- a/common/utils/environ.c +++ b/common/utils/environ.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/utils/exit-with-parent.c b/common/utils/exit-with-parent.c index c16a31cf..b57c40b8 100644 --- a/common/utils/exit-with-parent.c +++ b/common/utils/exit-with-parent.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/utils/exit-with-parent.h b/common/utils/exit-with-parent.h index 73fe50f5..a390633e 100644 --- a/common/utils/exit-with-parent.h +++ b/common/utils/exit-with-parent.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/utils/full-rw.c b/common/utils/full-rw.c index 4b4d1b1a..11607178 100644 --- a/common/utils/full-rw.c +++ b/common/utils/full-rw.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/utils/nbdkit-string.h b/common/utils/nbdkit-string.h index d4550106..b09a836d 100644 --- a/common/utils/nbdkit-string.h +++ b/common/utils/nbdkit-string.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2020-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/utils/quote.c b/common/utils/quote.c index d52cf10e..863e08a8 100644 --- a/common/utils/quote.c +++ b/common/utils/quote.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/utils/string-vector.h b/common/utils/string-vector.h index 8245c529..f30e1e16 100644 --- a/common/utils/string-vector.h +++ b/common/utils/string-vector.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2020-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/utils/test-quotes.c b/common/utils/test-quotes.c index 4960c7f8..2a8409dc 100644 --- a/common/utils/test-quotes.c +++ b/common/utils/test-quotes.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/utils/test-vector.c b/common/utils/test-vector.c index 9078efb5..27ae1eaf 100644 --- a/common/utils/test-vector.c +++ b/common/utils/test-vector.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/utils/utils.c b/common/utils/utils.c index 896594dd..0e46adeb 100644 --- a/common/utils/utils.c +++ b/common/utils/utils.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/utils/utils.h b/common/utils/utils.h index 9aa6155a..31ae73f7 100644 --- a/common/utils/utils.h +++ b/common/utils/utils.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/utils/vector.c b/common/utils/vector.c index d945cfe4..8dcb4667 100644 --- a/common/utils/vector.c +++ b/common/utils/vector.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/utils/vector.h b/common/utils/vector.h index 9549fa9e..ac28c0b5 100644 --- a/common/utils/vector.h +++ b/common/utils/vector.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/utils/windows-compat.c b/common/utils/windows-compat.c index 355d14f0..9b63f18c 100644 --- a/common/utils/windows-compat.c +++ b/common/utils/windows-compat.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/utils/windows-compat.h b/common/utils/windows-compat.h index 6d84a39a..c334256e 100644 --- a/common/utils/windows-compat.h +++ b/common/utils/windows-compat.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2020-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/common/utils/windows-errors.txt b/common/utils/windows-errors.txt index 1a252abe..f802cab4 100644 --- a/common/utils/windows-errors.txt +++ b/common/utils/windows-errors.txt @@ -1,5 +1,5 @@ # Winsock error to errno code mapping. -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/configure.ac b/configure.ac index 59709792..d7a5f89b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2023 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/docs/Makefile.am b/docs/Makefile.am index 5951376f..a8f3717c 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/docs/make-links.sh b/docs/make-links.sh index 28275405..ca4b73fd 100755 --- a/docs/make-links.sh +++ b/docs/make-links.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/docs/nbdkit-captive.pod b/docs/nbdkit-captive.pod index 4d031d3b..34a1d092 100644 --- a/docs/nbdkit-captive.pod +++ b/docs/nbdkit-captive.pod @@ -184,4 +184,4 @@ Pino Toscano =head1 COPYRIGHT -Copyright (C) 2013-2020 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-client.pod b/docs/nbdkit-client.pod index 6a99e09f..abc5d71a 100644 --- a/docs/nbdkit-client.pod +++ b/docs/nbdkit-client.pod @@ -85,4 +85,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2013-2020 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-filter.pod b/docs/nbdkit-filter.pod index f3d83b6e..f4ee3789 100644 --- a/docs/nbdkit-filter.pod +++ b/docs/nbdkit-filter.pod @@ -1196,4 +1196,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2013-2020 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-loop.pod b/docs/nbdkit-loop.pod index 962b459b..a859ea02 100644 --- a/docs/nbdkit-loop.pod +++ b/docs/nbdkit-loop.pod @@ -152,4 +152,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2013-2020 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-plugin.pod b/docs/nbdkit-plugin.pod index d338cde8..860c5cec 100644 --- a/docs/nbdkit-plugin.pod +++ b/docs/nbdkit-plugin.pod @@ -1947,4 +1947,4 @@ Pino Toscano =head1 COPYRIGHT -Copyright (C) 2013-2022 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-probing.pod b/docs/nbdkit-probing.pod index 312777a5..d644fcb7 100644 --- a/docs/nbdkit-probing.pod +++ b/docs/nbdkit-probing.pod @@ -152,4 +152,4 @@ Pino Toscano =head1 COPYRIGHT -Copyright (C) 2013-2020 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-protocol.pod b/docs/nbdkit-protocol.pod index 95a39749..7e89a607 100644 --- a/docs/nbdkit-protocol.pod +++ b/docs/nbdkit-protocol.pod @@ -236,4 +236,4 @@ Pino Toscano =head1 COPYRIGHT -Copyright (C) 2013-2020 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-release-notes-1.10.pod b/docs/nbdkit-release-notes-1.10.pod index 03901c8c..e2279ab5 100644 --- a/docs/nbdkit-release-notes-1.10.pod +++ b/docs/nbdkit-release-notes-1.10.pod @@ -128,4 +128,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2019 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-release-notes-1.12.pod b/docs/nbdkit-release-notes-1.12.pod index ecd0ce4e..4df7b11f 100644 --- a/docs/nbdkit-release-notes-1.12.pod +++ b/docs/nbdkit-release-notes-1.12.pod @@ -102,4 +102,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2019 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-release-notes-1.14.pod b/docs/nbdkit-release-notes-1.14.pod index 69ab431f..8cc1e2a8 100644 --- a/docs/nbdkit-release-notes-1.14.pod +++ b/docs/nbdkit-release-notes-1.14.pod @@ -142,4 +142,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2019 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-release-notes-1.16.pod b/docs/nbdkit-release-notes-1.16.pod index 5334e33b..3ae36a14 100644 --- a/docs/nbdkit-release-notes-1.16.pod +++ b/docs/nbdkit-release-notes-1.16.pod @@ -169,4 +169,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2019 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-release-notes-1.18.pod b/docs/nbdkit-release-notes-1.18.pod index ebb06a14..d660a6ca 100644 --- a/docs/nbdkit-release-notes-1.18.pod +++ b/docs/nbdkit-release-notes-1.18.pod @@ -207,4 +207,4 @@ Authors of nbdkit 1.18: =head1 COPYRIGHT -Copyright (C) 2020 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-release-notes-1.20.pod b/docs/nbdkit-release-notes-1.20.pod index 33473386..7e43b76c 100644 --- a/docs/nbdkit-release-notes-1.20.pod +++ b/docs/nbdkit-release-notes-1.20.pod @@ -178,4 +178,4 @@ Authors of nbdkit 1.20: =head1 COPYRIGHT -Copyright (C) 2020 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-release-notes-1.22.pod b/docs/nbdkit-release-notes-1.22.pod index 2146b973..229549b7 100644 --- a/docs/nbdkit-release-notes-1.22.pod +++ b/docs/nbdkit-release-notes-1.22.pod @@ -247,4 +247,4 @@ Authors of nbdkit 1.22: =head1 COPYRIGHT -Copyright (C) 2020 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-release-notes-1.24.pod b/docs/nbdkit-release-notes-1.24.pod index 246dba01..c6d35e69 100644 --- a/docs/nbdkit-release-notes-1.24.pod +++ b/docs/nbdkit-release-notes-1.24.pod @@ -161,4 +161,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2020-2021 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-release-notes-1.26.pod b/docs/nbdkit-release-notes-1.26.pod index 5471cfce..d438d566 100644 --- a/docs/nbdkit-release-notes-1.26.pod +++ b/docs/nbdkit-release-notes-1.26.pod @@ -193,4 +193,4 @@ Timm Bäder =head1 COPYRIGHT -Copyright (C) 2021 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-release-notes-1.28.pod b/docs/nbdkit-release-notes-1.28.pod index 2630d7bb..338d44bb 100644 --- a/docs/nbdkit-release-notes-1.28.pod +++ b/docs/nbdkit-release-notes-1.28.pod @@ -161,4 +161,4 @@ git shortlog -s v1.26.0.. =head1 COPYRIGHT -Copyright (C) 2021 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-release-notes-1.30.pod b/docs/nbdkit-release-notes-1.30.pod index b6ae238d..f95534ee 100644 --- a/docs/nbdkit-release-notes-1.30.pod +++ b/docs/nbdkit-release-notes-1.30.pod @@ -219,4 +219,4 @@ git shortlog -s v1.28.0.. =head1 COPYRIGHT -Copyright (C) 2021-2022 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-release-notes-1.32.pod b/docs/nbdkit-release-notes-1.32.pod index 79568a1b..b378fd12 100644 --- a/docs/nbdkit-release-notes-1.32.pod +++ b/docs/nbdkit-release-notes-1.32.pod @@ -188,4 +188,4 @@ git shortlog -s v1.30.0.. =head1 COPYRIGHT -Copyright (C) 2013-2022 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-release-notes-1.4.pod b/docs/nbdkit-release-notes-1.4.pod index 84247534..2b34aa48 100644 --- a/docs/nbdkit-release-notes-1.4.pod +++ b/docs/nbdkit-release-notes-1.4.pod @@ -104,4 +104,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-release-notes-1.6.pod b/docs/nbdkit-release-notes-1.6.pod index 024ae503..9d5b79e1 100644 --- a/docs/nbdkit-release-notes-1.6.pod +++ b/docs/nbdkit-release-notes-1.6.pod @@ -109,4 +109,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-release-notes-1.8.pod b/docs/nbdkit-release-notes-1.8.pod index 3f7b7cff..645249ba 100644 --- a/docs/nbdkit-release-notes-1.8.pod +++ b/docs/nbdkit-release-notes-1.8.pod @@ -115,4 +115,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-security.pod b/docs/nbdkit-security.pod index 77e9552d..07d803ef 100644 --- a/docs/nbdkit-security.pod +++ b/docs/nbdkit-security.pod @@ -45,4 +45,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2013-2021 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-service.pod b/docs/nbdkit-service.pod index e3eef6ba..130172eb 100644 --- a/docs/nbdkit-service.pod +++ b/docs/nbdkit-service.pod @@ -184,4 +184,4 @@ Pino Toscano =head1 COPYRIGHT -Copyright (C) 2013-2020 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit-tls.pod b/docs/nbdkit-tls.pod index ea7fbea7..70311be1 100644 --- a/docs/nbdkit-tls.pod +++ b/docs/nbdkit-tls.pod @@ -412,4 +412,4 @@ Pino Toscano =head1 COPYRIGHT -Copyright (C) 2013-2021 Red Hat Inc. +Copyright Red Hat diff --git a/docs/nbdkit.pod b/docs/nbdkit.pod index 01dcb196..2aee9b60 100644 --- a/docs/nbdkit.pod +++ b/docs/nbdkit.pod @@ -784,4 +784,4 @@ Pino Toscano =head1 COPYRIGHT -Copyright (C) 2013-2020 Red Hat Inc. +Copyright Red Hat diff --git a/filters/Makefile.am b/filters/Makefile.am index d2370455..9de4a47f 100644 --- a/filters/Makefile.am +++ b/filters/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/blocksize-policy/Makefile.am b/filters/blocksize-policy/Makefile.am index eb6e7ae0..7e8052e1 100644 --- a/filters/blocksize-policy/Makefile.am +++ b/filters/blocksize-policy/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/blocksize-policy/nbdkit-blocksize-policy-filter.pod b/filters/blocksize-policy/nbdkit-blocksize-policy-filter.pod index a377829f..8949c779 100644 --- a/filters/blocksize-policy/nbdkit-blocksize-policy-filter.pod +++ b/filters/blocksize-policy/nbdkit-blocksize-policy-filter.pod @@ -155,4 +155,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2022 Red Hat Inc. +Copyright Red Hat diff --git a/filters/blocksize-policy/policy.c b/filters/blocksize-policy/policy.c index 06d23698..afeb724b 100644 --- a/filters/blocksize-policy/policy.c +++ b/filters/blocksize-policy/policy.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/blocksize/Makefile.am b/filters/blocksize/Makefile.am index 5de4a0a8..b27dc31e 100644 --- a/filters/blocksize/Makefile.am +++ b/filters/blocksize/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/blocksize/blocksize.c b/filters/blocksize/blocksize.c index 33f5f6b0..09195cea 100644 --- a/filters/blocksize/blocksize.c +++ b/filters/blocksize/blocksize.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/blocksize/nbdkit-blocksize-filter.pod b/filters/blocksize/nbdkit-blocksize-filter.pod index 4a1ebded..60aeff62 100644 --- a/filters/blocksize/nbdkit-blocksize-filter.pod +++ b/filters/blocksize/nbdkit-blocksize-filter.pod @@ -127,4 +127,4 @@ Eric Blake =head1 COPYRIGHT -Copyright (C) 2018-2022 Red Hat Inc. +Copyright Red Hat diff --git a/filters/cache/Makefile.am b/filters/cache/Makefile.am index 27336214..76bbfac1 100644 --- a/filters/cache/Makefile.am +++ b/filters/cache/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/cache/blk.c b/filters/cache/blk.c index e50a7f24..ba2c41b4 100644 --- a/filters/cache/blk.c +++ b/filters/cache/blk.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/cache/blk.h b/filters/cache/blk.h index d521582e..06b11a04 100644 --- a/filters/cache/blk.h +++ b/filters/cache/blk.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/cache/cache.c b/filters/cache/cache.c index aa82a852..c379f100 100644 --- a/filters/cache/cache.c +++ b/filters/cache/cache.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/cache/cache.h b/filters/cache/cache.h index 5c32c37c..a89236d8 100644 --- a/filters/cache/cache.h +++ b/filters/cache/cache.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/cache/lru.c b/filters/cache/lru.c index 716b4984..943eb279 100644 --- a/filters/cache/lru.c +++ b/filters/cache/lru.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/cache/lru.h b/filters/cache/lru.h index 673f39ef..890717c4 100644 --- a/filters/cache/lru.h +++ b/filters/cache/lru.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/cache/nbdkit-cache-filter.pod b/filters/cache/nbdkit-cache-filter.pod index 935804b5..75b46659 100644 --- a/filters/cache/nbdkit-cache-filter.pod +++ b/filters/cache/nbdkit-cache-filter.pod @@ -192,4 +192,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018-2021 Red Hat Inc. +Copyright Red Hat diff --git a/filters/cache/reclaim.c b/filters/cache/reclaim.c index 2c20950c..6c6f76de 100644 --- a/filters/cache/reclaim.c +++ b/filters/cache/reclaim.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/cache/reclaim.h b/filters/cache/reclaim.h index 6f6ac2e0..3ae2ccbe 100644 --- a/filters/cache/reclaim.h +++ b/filters/cache/reclaim.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/cacheextents/Makefile.am b/filters/cacheextents/Makefile.am index 85638315..26ac6642 100644 --- a/filters/cacheextents/Makefile.am +++ b/filters/cacheextents/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/cacheextents/cacheextents.c b/filters/cacheextents/cacheextents.c index 9384b062..71f73c41 100644 --- a/filters/cacheextents/cacheextents.c +++ b/filters/cacheextents/cacheextents.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/cacheextents/nbdkit-cacheextents-filter.pod b/filters/cacheextents/nbdkit-cacheextents-filter.pod index 6464eac2..77dc680c 100644 --- a/filters/cacheextents/nbdkit-cacheextents-filter.pod +++ b/filters/cacheextents/nbdkit-cacheextents-filter.pod @@ -65,4 +65,4 @@ Martin Kletzander =head1 COPYRIGHT -Copyright (C) 2019 Red Hat Inc. +Copyright Red Hat diff --git a/filters/checkwrite/Makefile.am b/filters/checkwrite/Makefile.am index 53762866..288196c1 100644 --- a/filters/checkwrite/Makefile.am +++ b/filters/checkwrite/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/checkwrite/checkwrite.c b/filters/checkwrite/checkwrite.c index 609a29fe..294681b3 100644 --- a/filters/checkwrite/checkwrite.c +++ b/filters/checkwrite/checkwrite.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/checkwrite/nbdkit-checkwrite-filter.pod b/filters/checkwrite/nbdkit-checkwrite-filter.pod index ee4173e9..67a466f8 100644 --- a/filters/checkwrite/nbdkit-checkwrite-filter.pod +++ b/filters/checkwrite/nbdkit-checkwrite-filter.pod @@ -91,4 +91,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2020-2022 Red Hat Inc. +Copyright Red Hat diff --git a/filters/cow/Makefile.am b/filters/cow/Makefile.am index 6765eb64..bd4c4213 100644 --- a/filters/cow/Makefile.am +++ b/filters/cow/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/cow/blk.c b/filters/cow/blk.c index f9341dc1..d41f62d2 100644 --- a/filters/cow/blk.c +++ b/filters/cow/blk.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/cow/blk.h b/filters/cow/blk.h index 5708d501..be3eb9e5 100644 --- a/filters/cow/blk.h +++ b/filters/cow/blk.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/cow/cow.c b/filters/cow/cow.c index e813d506..4526bbfc 100644 --- a/filters/cow/cow.c +++ b/filters/cow/cow.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/cow/cow.h b/filters/cow/cow.h index d46dbe91..c89cccd7 100644 --- a/filters/cow/cow.h +++ b/filters/cow/cow.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/cow/nbdkit-cow-filter.pod b/filters/cow/nbdkit-cow-filter.pod index b69544f6..1fd91c0a 100644 --- a/filters/cow/nbdkit-cow-filter.pod +++ b/filters/cow/nbdkit-cow-filter.pod @@ -178,4 +178,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018-2021 Red Hat Inc. +Copyright Red Hat diff --git a/filters/ddrescue/Makefile.am b/filters/ddrescue/Makefile.am index bb294a6e..d1dc66cb 100644 --- a/filters/ddrescue/Makefile.am +++ b/filters/ddrescue/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/delay/Makefile.am b/filters/delay/Makefile.am index 01f77e9e..3a271859 100644 --- a/filters/delay/Makefile.am +++ b/filters/delay/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/delay/delay.c b/filters/delay/delay.c index ac6323b9..57b812eb 100644 --- a/filters/delay/delay.c +++ b/filters/delay/delay.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/delay/nbdkit-delay-filter.pod b/filters/delay/nbdkit-delay-filter.pod index 0e75f7fa..825dbb22 100644 --- a/filters/delay/nbdkit-delay-filter.pod +++ b/filters/delay/nbdkit-delay-filter.pod @@ -171,4 +171,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018-2021 Red Hat Inc. +Copyright Red Hat diff --git a/filters/error/Makefile.am b/filters/error/Makefile.am index 375cdc6b..2a13728f 100644 --- a/filters/error/Makefile.am +++ b/filters/error/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/error/error.c b/filters/error/error.c index fe81d6c3..ac4da8c1 100644 --- a/filters/error/error.c +++ b/filters/error/error.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/error/nbdkit-error-filter.pod b/filters/error/nbdkit-error-filter.pod index 47fcd379..bedd9792 100644 --- a/filters/error/nbdkit-error-filter.pod +++ b/filters/error/nbdkit-error-filter.pod @@ -172,4 +172,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018 Red Hat Inc. +Copyright Red Hat diff --git a/filters/exitlast/Makefile.am b/filters/exitlast/Makefile.am index b3bf0ddd..a533abda 100644 --- a/filters/exitlast/Makefile.am +++ b/filters/exitlast/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/exitlast/exitlast.c b/filters/exitlast/exitlast.c index e473125a..78843f97 100644 --- a/filters/exitlast/exitlast.c +++ b/filters/exitlast/exitlast.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/exitlast/nbdkit-exitlast-filter.pod b/filters/exitlast/nbdkit-exitlast-filter.pod index 1791d2cf..b6a353f5 100644 --- a/filters/exitlast/nbdkit-exitlast-filter.pod +++ b/filters/exitlast/nbdkit-exitlast-filter.pod @@ -59,4 +59,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2020 Red Hat Inc. +Copyright Red Hat diff --git a/filters/exitwhen/Makefile.am b/filters/exitwhen/Makefile.am index ab2cb47e..0e0ecc3c 100644 --- a/filters/exitwhen/Makefile.am +++ b/filters/exitwhen/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/exitwhen/exitwhen.c b/filters/exitwhen/exitwhen.c index 9e915735..080467f6 100644 --- a/filters/exitwhen/exitwhen.c +++ b/filters/exitwhen/exitwhen.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2023 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/exitwhen/nbdkit-exitwhen-filter.pod b/filters/exitwhen/nbdkit-exitwhen-filter.pod index 7ea6c860..c51a3653 100644 --- a/filters/exitwhen/nbdkit-exitwhen-filter.pod +++ b/filters/exitwhen/nbdkit-exitwhen-filter.pod @@ -185,4 +185,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2020 Red Hat Inc. +Copyright Red Hat diff --git a/filters/exportname/Makefile.am b/filters/exportname/Makefile.am index 21d04391..27eaa622 100644 --- a/filters/exportname/Makefile.am +++ b/filters/exportname/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/exportname/exportname.c b/filters/exportname/exportname.c index 39ad65bf..4949de39 100644 --- a/filters/exportname/exportname.c +++ b/filters/exportname/exportname.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/exportname/nbdkit-exportname-filter.pod b/filters/exportname/nbdkit-exportname-filter.pod index 33e2ac23..1d69f7d4 100644 --- a/filters/exportname/nbdkit-exportname-filter.pod +++ b/filters/exportname/nbdkit-exportname-filter.pod @@ -151,4 +151,4 @@ Eric Blake =head1 COPYRIGHT -Copyright (C) 2020 Red Hat Inc. +Copyright Red Hat diff --git a/filters/ext2/Makefile.am b/filters/ext2/Makefile.am index 9ed17439..4353c5d1 100644 --- a/filters/ext2/Makefile.am +++ b/filters/ext2/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2017-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/ext2/ext2.c b/filters/ext2/ext2.c index 37ea67a8..f9858ca4 100644 --- a/filters/ext2/ext2.c +++ b/filters/ext2/ext2.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/ext2/io.c b/filters/ext2/io.c index e2f7e43e..86c39440 100644 --- a/filters/ext2/io.c +++ b/filters/ext2/io.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2020-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/ext2/io.h b/filters/ext2/io.h index a87287bf..ce3a58f2 100644 --- a/filters/ext2/io.h +++ b/filters/ext2/io.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2020-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/ext2/nbdkit-ext2-filter.pod b/filters/ext2/nbdkit-ext2-filter.pod index b2064e8a..eaf49669 100644 --- a/filters/ext2/nbdkit-ext2-filter.pod +++ b/filters/ext2/nbdkit-ext2-filter.pod @@ -110,4 +110,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018-2020 Red Hat Inc. +Copyright Red Hat diff --git a/filters/extentlist/Makefile.am b/filters/extentlist/Makefile.am index 2df21db8..60811eb1 100644 --- a/filters/extentlist/Makefile.am +++ b/filters/extentlist/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/extentlist/extentlist.c b/filters/extentlist/extentlist.c index 85ee82e9..bb5c29d5 100644 --- a/filters/extentlist/extentlist.c +++ b/filters/extentlist/extentlist.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/extentlist/nbdkit-extentlist-filter.pod b/filters/extentlist/nbdkit-extentlist-filter.pod index 96fe0e9c..41bc4fad 100644 --- a/filters/extentlist/nbdkit-extentlist-filter.pod +++ b/filters/extentlist/nbdkit-extentlist-filter.pod @@ -96,4 +96,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2020 Red Hat Inc. +Copyright Red Hat diff --git a/filters/filters.syms b/filters/filters.syms index 6d49e748..8ec5b4ea 100644 --- a/filters/filters.syms +++ b/filters/filters.syms @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/fua/Makefile.am b/filters/fua/Makefile.am index d8ea5a3e..13dddd81 100644 --- a/filters/fua/Makefile.am +++ b/filters/fua/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/fua/fua.c b/filters/fua/fua.c index 84351653..1dd3844e 100644 --- a/filters/fua/fua.c +++ b/filters/fua/fua.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/fua/nbdkit-fua-filter.pod b/filters/fua/nbdkit-fua-filter.pod index 9b0d84b5..e3f44332 100644 --- a/filters/fua/nbdkit-fua-filter.pod +++ b/filters/fua/nbdkit-fua-filter.pod @@ -155,4 +155,4 @@ Eric Blake =head1 COPYRIGHT -Copyright (C) 2018 Red Hat Inc. +Copyright Red Hat diff --git a/filters/gzip/Makefile.am b/filters/gzip/Makefile.am index fd6f8cae..d02e1dbc 100644 --- a/filters/gzip/Makefile.am +++ b/filters/gzip/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/gzip/gzip.c b/filters/gzip/gzip.c index df6e3437..9a8c9032 100644 --- a/filters/gzip/gzip.c +++ b/filters/gzip/gzip.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/gzip/nbdkit-gzip-filter.pod b/filters/gzip/nbdkit-gzip-filter.pod index 5c3a3d71..b197d1e8 100644 --- a/filters/gzip/nbdkit-gzip-filter.pod +++ b/filters/gzip/nbdkit-gzip-filter.pod @@ -82,4 +82,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2013-2020 Red Hat Inc. +Copyright Red Hat diff --git a/filters/ip/Makefile.am b/filters/ip/Makefile.am index 28a69883..5a7c6970 100644 --- a/filters/ip/Makefile.am +++ b/filters/ip/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/ip/ip.c b/filters/ip/ip.c index 4db902e0..365b291d 100644 --- a/filters/ip/ip.c +++ b/filters/ip/ip.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/ip/nbdkit-ip-filter.pod b/filters/ip/nbdkit-ip-filter.pod index 48731a98..23d94f5c 100644 --- a/filters/ip/nbdkit-ip-filter.pod +++ b/filters/ip/nbdkit-ip-filter.pod @@ -235,4 +235,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2019-2020 Red Hat Inc. +Copyright Red Hat diff --git a/filters/limit/Makefile.am b/filters/limit/Makefile.am index 39b08cdc..fb5a55f4 100644 --- a/filters/limit/Makefile.am +++ b/filters/limit/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/limit/limit.c b/filters/limit/limit.c index fc0dcada..29c114fd 100644 --- a/filters/limit/limit.c +++ b/filters/limit/limit.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/limit/nbdkit-limit-filter.pod b/filters/limit/nbdkit-limit-filter.pod index 5d211047..41f3acfb 100644 --- a/filters/limit/nbdkit-limit-filter.pod +++ b/filters/limit/nbdkit-limit-filter.pod @@ -59,4 +59,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2020 Red Hat Inc. +Copyright Red Hat diff --git a/filters/log/Makefile.am b/filters/log/Makefile.am index 0604c3a2..e65f7f9e 100644 --- a/filters/log/Makefile.am +++ b/filters/log/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/log/log.c b/filters/log/log.c index 4a9291b2..5e3ba099 100644 --- a/filters/log/log.c +++ b/filters/log/log.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/log/log.h b/filters/log/log.h index a8222715..e60e6985 100644 --- a/filters/log/log.h +++ b/filters/log/log.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/log/nbdkit-log-filter.pod b/filters/log/nbdkit-log-filter.pod index e0a0c209..b91b60c4 100644 --- a/filters/log/nbdkit-log-filter.pod +++ b/filters/log/nbdkit-log-filter.pod @@ -216,4 +216,4 @@ Eric Blake =head1 COPYRIGHT -Copyright (C) 2018 Red Hat Inc. +Copyright Red Hat diff --git a/filters/log/output.c b/filters/log/output.c index c999150a..4a116046 100644 --- a/filters/log/output.c +++ b/filters/log/output.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/luks/Makefile.am b/filters/luks/Makefile.am index dc4d6876..4fc3d9e0 100644 --- a/filters/luks/Makefile.am +++ b/filters/luks/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/luks/luks-encryption.c b/filters/luks/luks-encryption.c index 5ce3cb3a..5dd50079 100644 --- a/filters/luks/luks-encryption.c +++ b/filters/luks/luks-encryption.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/luks/luks-encryption.h b/filters/luks/luks-encryption.h index 3f8b9c9e..fbcec295 100644 --- a/filters/luks/luks-encryption.h +++ b/filters/luks/luks-encryption.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/luks/luks.c b/filters/luks/luks.c index c84dbf42..cfd02c21 100644 --- a/filters/luks/luks.c +++ b/filters/luks/luks.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/luks/nbdkit-luks-filter.pod b/filters/luks/nbdkit-luks-filter.pod index 56e51561..1daebd20 100644 --- a/filters/luks/nbdkit-luks-filter.pod +++ b/filters/luks/nbdkit-luks-filter.pod @@ -117,4 +117,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2013-2022 Red Hat Inc. +Copyright Red Hat diff --git a/filters/multi-conn/Makefile.am b/filters/multi-conn/Makefile.am index 9aa18452..4a456a15 100644 --- a/filters/multi-conn/Makefile.am +++ b/filters/multi-conn/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2021, 2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/multi-conn/multi-conn.c b/filters/multi-conn/multi-conn.c index 12629742..ce49bf69 100644 --- a/filters/multi-conn/multi-conn.c +++ b/filters/multi-conn/multi-conn.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2021-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/multi-conn/nbdkit-multi-conn-filter.pod b/filters/multi-conn/nbdkit-multi-conn-filter.pod index 78cece7c..f6c984c9 100644 --- a/filters/multi-conn/nbdkit-multi-conn-filter.pod +++ b/filters/multi-conn/nbdkit-multi-conn-filter.pod @@ -234,4 +234,4 @@ Eric Blake =head1 COPYRIGHT -Copyright (C) 2018-2021 Red Hat Inc. +Copyright Red Hat diff --git a/filters/nocache/Makefile.am b/filters/nocache/Makefile.am index cd982245..de48fb6e 100644 --- a/filters/nocache/Makefile.am +++ b/filters/nocache/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/nocache/nbdkit-nocache-filter.pod b/filters/nocache/nbdkit-nocache-filter.pod index 3c30533c..d7ff605d 100644 --- a/filters/nocache/nbdkit-nocache-filter.pod +++ b/filters/nocache/nbdkit-nocache-filter.pod @@ -88,4 +88,4 @@ Eric Blake =head1 COPYRIGHT -Copyright (C) 2019 Red Hat Inc. +Copyright Red Hat diff --git a/filters/nocache/nocache.c b/filters/nocache/nocache.c index 87f77286..a69f08a1 100644 --- a/filters/nocache/nocache.c +++ b/filters/nocache/nocache.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/noextents/Makefile.am b/filters/noextents/Makefile.am index 405db78e..bc45585b 100644 --- a/filters/noextents/Makefile.am +++ b/filters/noextents/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/noextents/nbdkit-noextents-filter.pod b/filters/noextents/nbdkit-noextents-filter.pod index 891b197d..47daf5cb 100644 --- a/filters/noextents/nbdkit-noextents-filter.pod +++ b/filters/noextents/nbdkit-noextents-filter.pod @@ -61,4 +61,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2019 Red Hat Inc. +Copyright Red Hat diff --git a/filters/noextents/noextents.c b/filters/noextents/noextents.c index 56cd21b7..1639a563 100644 --- a/filters/noextents/noextents.c +++ b/filters/noextents/noextents.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/nofilter/Makefile.am b/filters/nofilter/Makefile.am index c365cb10..db90cdf2 100644 --- a/filters/nofilter/Makefile.am +++ b/filters/nofilter/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/nofilter/nbdkit-nofilter-filter.pod b/filters/nofilter/nbdkit-nofilter-filter.pod index 2f577c23..de9ec118 100644 --- a/filters/nofilter/nbdkit-nofilter-filter.pod +++ b/filters/nofilter/nbdkit-nofilter-filter.pod @@ -38,4 +38,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2019 Red Hat Inc. +Copyright Red Hat diff --git a/filters/nofilter/nofilter.c b/filters/nofilter/nofilter.c index d6acf71e..72928ffa 100644 --- a/filters/nofilter/nofilter.c +++ b/filters/nofilter/nofilter.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/noparallel/Makefile.am b/filters/noparallel/Makefile.am index 6b6fac8d..4701105c 100644 --- a/filters/noparallel/Makefile.am +++ b/filters/noparallel/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/noparallel/nbdkit-noparallel-filter.pod b/filters/noparallel/nbdkit-noparallel-filter.pod index 8ac8d1a7..63e0dcb0 100644 --- a/filters/noparallel/nbdkit-noparallel-filter.pod +++ b/filters/noparallel/nbdkit-noparallel-filter.pod @@ -87,4 +87,4 @@ Eric Blake =head1 COPYRIGHT -Copyright (C) 2018-2020 Red Hat Inc. +Copyright Red Hat diff --git a/filters/noparallel/noparallel.c b/filters/noparallel/noparallel.c index b839d325..9c871d37 100644 --- a/filters/noparallel/noparallel.c +++ b/filters/noparallel/noparallel.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/nozero/Makefile.am b/filters/nozero/Makefile.am index 75e4cdb0..074458bd 100644 --- a/filters/nozero/Makefile.am +++ b/filters/nozero/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/nozero/nbdkit-nozero-filter.pod b/filters/nozero/nbdkit-nozero-filter.pod index 4a239962..331e3a4a 100644 --- a/filters/nozero/nbdkit-nozero-filter.pod +++ b/filters/nozero/nbdkit-nozero-filter.pod @@ -142,4 +142,4 @@ Eric Blake =head1 COPYRIGHT -Copyright (C) 2018-2020 Red Hat Inc. +Copyright Red Hat diff --git a/filters/nozero/nozero.c b/filters/nozero/nozero.c index 96da2551..09fd517f 100644 --- a/filters/nozero/nozero.c +++ b/filters/nozero/nozero.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/offset/Makefile.am b/filters/offset/Makefile.am index 22b62bb2..2c7efad9 100644 --- a/filters/offset/Makefile.am +++ b/filters/offset/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/offset/nbdkit-offset-filter.pod b/filters/offset/nbdkit-offset-filter.pod index 7dc860f1..d4d78993 100644 --- a/filters/offset/nbdkit-offset-filter.pod +++ b/filters/offset/nbdkit-offset-filter.pod @@ -96,4 +96,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018 Red Hat Inc. +Copyright Red Hat diff --git a/filters/offset/offset.c b/filters/offset/offset.c index 5b1253ae..f00618fb 100644 --- a/filters/offset/offset.c +++ b/filters/offset/offset.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/partition/Makefile.am b/filters/partition/Makefile.am index f14c641d..9aa29215 100644 --- a/filters/partition/Makefile.am +++ b/filters/partition/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/partition/nbdkit-partition-filter.pod b/filters/partition/nbdkit-partition-filter.pod index 4faa69b7..8974c34d 100644 --- a/filters/partition/nbdkit-partition-filter.pod +++ b/filters/partition/nbdkit-partition-filter.pod @@ -73,4 +73,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018 Red Hat Inc. +Copyright Red Hat diff --git a/filters/partition/partition-gpt.c b/filters/partition/partition-gpt.c index 37031822..97f42182 100644 --- a/filters/partition/partition-gpt.c +++ b/filters/partition/partition-gpt.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/partition/partition-mbr.c b/filters/partition/partition-mbr.c index d964e0c6..72315269 100644 --- a/filters/partition/partition-mbr.c +++ b/filters/partition/partition-mbr.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/partition/partition.c b/filters/partition/partition.c index 9c235124..b206f48c 100644 --- a/filters/partition/partition.c +++ b/filters/partition/partition.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/partition/partition.h b/filters/partition/partition.h index 432b8eb4..a11d8fc7 100644 --- a/filters/partition/partition.h +++ b/filters/partition/partition.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/pause/Makefile.am b/filters/pause/Makefile.am index 0cd08820..d8fcc62a 100644 --- a/filters/pause/Makefile.am +++ b/filters/pause/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/pause/nbdkit-pause-filter.pod b/filters/pause/nbdkit-pause-filter.pod index d321fddb..1bc083dd 100644 --- a/filters/pause/nbdkit-pause-filter.pod +++ b/filters/pause/nbdkit-pause-filter.pod @@ -111,4 +111,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2020 Red Hat Inc. +Copyright Red Hat diff --git a/filters/pause/pause.c b/filters/pause/pause.c index b55a5d89..31a26156 100644 --- a/filters/pause/pause.c +++ b/filters/pause/pause.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/protect/Makefile.am b/filters/protect/Makefile.am index b65ba69f..0a44e86f 100644 --- a/filters/protect/Makefile.am +++ b/filters/protect/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/protect/nbdkit-protect-filter.pod b/filters/protect/nbdkit-protect-filter.pod index 119bbeb3..b5ffc7ca 100644 --- a/filters/protect/nbdkit-protect-filter.pod +++ b/filters/protect/nbdkit-protect-filter.pod @@ -119,4 +119,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2021 Red Hat Inc. +Copyright Red Hat diff --git a/filters/protect/protect.c b/filters/protect/protect.c index b9edd062..1ccca28d 100644 --- a/filters/protect/protect.c +++ b/filters/protect/protect.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/rate/Makefile.am b/filters/rate/Makefile.am index 25471ebc..e1abf7fc 100644 --- a/filters/rate/Makefile.am +++ b/filters/rate/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/rate/bucket.c b/filters/rate/bucket.c index 5969c6e7..5c228fef 100644 --- a/filters/rate/bucket.c +++ b/filters/rate/bucket.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/rate/bucket.h b/filters/rate/bucket.h index 9a3a69f5..c738b41e 100644 --- a/filters/rate/bucket.h +++ b/filters/rate/bucket.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/rate/nbdkit-rate-filter.pod b/filters/rate/nbdkit-rate-filter.pod index 09ce7dbc..17da47d8 100644 --- a/filters/rate/nbdkit-rate-filter.pod +++ b/filters/rate/nbdkit-rate-filter.pod @@ -151,4 +151,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2019 Red Hat Inc. +Copyright Red Hat diff --git a/filters/rate/rate.c b/filters/rate/rate.c index f04eb008..378a0a7f 100644 --- a/filters/rate/rate.c +++ b/filters/rate/rate.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/readahead/Makefile.am b/filters/readahead/Makefile.am index 9f2f95e0..ba664088 100644 --- a/filters/readahead/Makefile.am +++ b/filters/readahead/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/readahead/bgthread.c b/filters/readahead/bgthread.c index 5894bb5f..2b8deb20 100644 --- a/filters/readahead/bgthread.c +++ b/filters/readahead/bgthread.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/readahead/nbdkit-readahead-filter.pod b/filters/readahead/nbdkit-readahead-filter.pod index 383fff37..0a0cbcbb 100644 --- a/filters/readahead/nbdkit-readahead-filter.pod +++ b/filters/readahead/nbdkit-readahead-filter.pod @@ -111,4 +111,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2019-2022 Red Hat Inc. +Copyright Red Hat diff --git a/filters/readahead/readahead.c b/filters/readahead/readahead.c index b4e02d5a..8cdcec57 100644 --- a/filters/readahead/readahead.c +++ b/filters/readahead/readahead.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/readahead/readahead.h b/filters/readahead/readahead.h index 4ae726dc..3dcaa5fa 100644 --- a/filters/readahead/readahead.h +++ b/filters/readahead/readahead.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/retry-request/Makefile.am b/filters/retry-request/Makefile.am index bb0b728f..5d03323f 100644 --- a/filters/retry-request/Makefile.am +++ b/filters/retry-request/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/retry-request/nbdkit-retry-request-filter.pod b/filters/retry-request/nbdkit-retry-request-filter.pod index df1ed0c0..190eea71 100644 --- a/filters/retry-request/nbdkit-retry-request-filter.pod +++ b/filters/retry-request/nbdkit-retry-request-filter.pod @@ -71,4 +71,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2019-2021 Red Hat Inc. +Copyright Red Hat diff --git a/filters/retry-request/retry-request.c b/filters/retry-request/retry-request.c index 28a65564..ed566080 100644 --- a/filters/retry-request/retry-request.c +++ b/filters/retry-request/retry-request.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/retry/Makefile.am b/filters/retry/Makefile.am index abe36848..2d0df10a 100644 --- a/filters/retry/Makefile.am +++ b/filters/retry/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/retry/nbdkit-retry-filter.pod b/filters/retry/nbdkit-retry-filter.pod index babd82bb..6eba3d4f 100644 --- a/filters/retry/nbdkit-retry-filter.pod +++ b/filters/retry/nbdkit-retry-filter.pod @@ -126,4 +126,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2019 Red Hat Inc. +Copyright Red Hat diff --git a/filters/retry/retry.c b/filters/retry/retry.c index c94598a2..c4e85bf7 100644 --- a/filters/retry/retry.c +++ b/filters/retry/retry.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2023 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/scan/Makefile.am b/filters/scan/Makefile.am index f271c372..36719ebb 100644 --- a/filters/scan/Makefile.am +++ b/filters/scan/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/scan/bgthread.c b/filters/scan/bgthread.c index 5fa5f27f..7b3f4371 100644 --- a/filters/scan/bgthread.c +++ b/filters/scan/bgthread.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/scan/nbdkit-scan-filter.pod b/filters/scan/nbdkit-scan-filter.pod index b0438be6..7ae650a2 100644 --- a/filters/scan/nbdkit-scan-filter.pod +++ b/filters/scan/nbdkit-scan-filter.pod @@ -160,4 +160,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2019-2022 Red Hat Inc. +Copyright Red Hat diff --git a/filters/scan/scan.c b/filters/scan/scan.c index 342257d2..8e77a90d 100644 --- a/filters/scan/scan.c +++ b/filters/scan/scan.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/scan/scan.h b/filters/scan/scan.h index e9ac4cf2..b401cdc0 100644 --- a/filters/scan/scan.h +++ b/filters/scan/scan.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/stats/Makefile.am b/filters/stats/Makefile.am index 226ec9ea..840805fb 100644 --- a/filters/stats/Makefile.am +++ b/filters/stats/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/stats/nbdkit-stats-filter.pod b/filters/stats/nbdkit-stats-filter.pod index 1cc693ce..c0d2b45c 100644 --- a/filters/stats/nbdkit-stats-filter.pod +++ b/filters/stats/nbdkit-stats-filter.pod @@ -123,4 +123,4 @@ Nikolaus Rath =head1 COPYRIGHT -Copyright (C) 2019-2022 Red Hat Inc. +Copyright Red Hat diff --git a/filters/stats/stats.cpp b/filters/stats/stats.cpp index 336d3777..63f41c98 100644 --- a/filters/stats/stats.cpp +++ b/filters/stats/stats.cpp @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/swab/Makefile.am b/filters/swab/Makefile.am index cb96bccc..ee83efd5 100644 --- a/filters/swab/Makefile.am +++ b/filters/swab/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/tar/Makefile.am b/filters/tar/Makefile.am index 1dca8881..66d3b747 100644 --- a/filters/tar/Makefile.am +++ b/filters/tar/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/tar/nbdkit-tar-filter.pod b/filters/tar/nbdkit-tar-filter.pod index c07c708f..96aba16d 100644 --- a/filters/tar/nbdkit-tar-filter.pod +++ b/filters/tar/nbdkit-tar-filter.pod @@ -129,4 +129,4 @@ Based on the virt-v2v OVA importer written by Tomáš Golembiovský. =head1 COPYRIGHT -Copyright (C) 2017-2020 Red Hat Inc. +Copyright Red Hat diff --git a/filters/tar/tar.c b/filters/tar/tar.c index 85507d82..c650a349 100644 --- a/filters/tar/tar.c +++ b/filters/tar/tar.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/tls-fallback/Makefile.am b/filters/tls-fallback/Makefile.am index f887330d..0eb988dc 100644 --- a/filters/tls-fallback/Makefile.am +++ b/filters/tls-fallback/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2020-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/tls-fallback/nbdkit-tls-fallback-filter.pod b/filters/tls-fallback/nbdkit-tls-fallback-filter.pod index 2d4d1d60..554be0af 100644 --- a/filters/tls-fallback/nbdkit-tls-fallback-filter.pod +++ b/filters/tls-fallback/nbdkit-tls-fallback-filter.pod @@ -70,4 +70,4 @@ Eric Blake =head1 COPYRIGHT -Copyright (C) 2020 Red Hat Inc. +Copyright Red Hat diff --git a/filters/tls-fallback/tls-fallback.c b/filters/tls-fallback/tls-fallback.c index 982dea6c..5787f9af 100644 --- a/filters/tls-fallback/tls-fallback.c +++ b/filters/tls-fallback/tls-fallback.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2020-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/truncate/Makefile.am b/filters/truncate/Makefile.am index 7e6ef8b0..32d156b0 100644 --- a/filters/truncate/Makefile.am +++ b/filters/truncate/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/truncate/nbdkit-truncate-filter.pod b/filters/truncate/nbdkit-truncate-filter.pod index 6c42eab3..6706ad05 100644 --- a/filters/truncate/nbdkit-truncate-filter.pod +++ b/filters/truncate/nbdkit-truncate-filter.pod @@ -118,4 +118,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018 Red Hat Inc. +Copyright Red Hat diff --git a/filters/truncate/truncate.c b/filters/truncate/truncate.c index 116b4aff..e3516cdf 100644 --- a/filters/truncate/truncate.c +++ b/filters/truncate/truncate.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/xz/Makefile.am b/filters/xz/Makefile.am index 3ba63e8c..899d80f2 100644 --- a/filters/xz/Makefile.am +++ b/filters/xz/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/filters/xz/blkcache.c b/filters/xz/blkcache.c index 7a5c9b57..9ace92a5 100644 --- a/filters/xz/blkcache.c +++ b/filters/xz/blkcache.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/xz/blkcache.h b/filters/xz/blkcache.h index 27da2137..15263dd7 100644 --- a/filters/xz/blkcache.h +++ b/filters/xz/blkcache.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/xz/nbdkit-xz-filter.pod b/filters/xz/nbdkit-xz-filter.pod index 8248efb5..3397aa48 100644 --- a/filters/xz/nbdkit-xz-filter.pod +++ b/filters/xz/nbdkit-xz-filter.pod @@ -109,4 +109,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2013-2020 Red Hat Inc. +Copyright Red Hat diff --git a/filters/xz/xz.c b/filters/xz/xz.c index bb04c813..0c92cfff 100644 --- a/filters/xz/xz.c +++ b/filters/xz/xz.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/xz/xzfile.c b/filters/xz/xzfile.c index 287a8248..6bd641a9 100644 --- a/filters/xz/xzfile.c +++ b/filters/xz/xzfile.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/filters/xz/xzfile.h b/filters/xz/xzfile.h index 13deb2a5..ad106870 100644 --- a/filters/xz/xzfile.h +++ b/filters/xz/xzfile.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/fuzzing/Makefile.am b/fuzzing/Makefile.am index f2a41510..af392908 100644 --- a/fuzzing/Makefile.am +++ b/fuzzing/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/include/Makefile.am b/include/Makefile.am index cf46abc6..774edf17 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/include/nbdkit-common.h b/include/nbdkit-common.h index fa23c235..e070245b 100644 --- a/include/nbdkit-common.h +++ b/include/nbdkit-common.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/include/nbdkit-filter.h b/include/nbdkit-filter.h index 4c620b4f..7d03b886 100644 --- a/include/nbdkit-filter.h +++ b/include/nbdkit-filter.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/include/nbdkit-plugin.h b/include/nbdkit-plugin.h index 50ff93df..87fa5326 100644 --- a/include/nbdkit-plugin.h +++ b/include/nbdkit-plugin.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/include/nbdkit-version.h.in b/include/nbdkit-version.h.in index 35fc537e..38ff5451 100644 --- a/include/nbdkit-version.h.in +++ b/include/nbdkit-version.h.in @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/Makefile.am b/plugins/Makefile.am index 43a6a88c..e6b0c79d 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/S3/Makefile.am b/plugins/S3/Makefile.am index 10fb2c03..4d24778c 100644 --- a/plugins/S3/Makefile.am +++ b/plugins/S3/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/S3/S3.py b/plugins/S3/S3.py index c887feca..c7d8ac54 100755 --- a/plugins/S3/S3.py +++ b/plugins/S3/S3.py @@ -1,6 +1,6 @@ #!@sbindir@/nbdkit python # -*- python -*- -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/S3/nbdkit-S3-plugin.pod b/plugins/S3/nbdkit-S3-plugin.pod index 71615a22..3a7bd85e 100644 --- a/plugins/S3/nbdkit-S3-plugin.pod +++ b/plugins/S3/nbdkit-S3-plugin.pod @@ -197,4 +197,4 @@ Nikolaus Rath =head1 COPYRIGHT -Copyright (C) 2020-2022 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/blkio/Makefile.am b/plugins/blkio/Makefile.am index 472bd81c..3ffdd9ee 100644 --- a/plugins/blkio/Makefile.am +++ b/plugins/blkio/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2014-2023 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/blkio/blkio.c b/plugins/blkio/blkio.c index 6eafa287..d589664d 100644 --- a/plugins/blkio/blkio.c +++ b/plugins/blkio/blkio.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2014-2023 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/blkio/nbdkit-blkio-plugin.pod b/plugins/blkio/nbdkit-blkio-plugin.pod index 68859dc6..b16ce5d8 100644 --- a/plugins/blkio/nbdkit-blkio-plugin.pod +++ b/plugins/blkio/nbdkit-blkio-plugin.pod @@ -121,4 +121,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2014-2023 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/cc/Makefile.am b/plugins/cc/Makefile.am index 1015151c..df8b5d15 100644 --- a/plugins/cc/Makefile.am +++ b/plugins/cc/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/cc/cc.c b/plugins/cc/cc.c index fdc6934d..13af965f 100644 --- a/plugins/cc/cc.c +++ b/plugins/cc/cc.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/cc/nbdkit-cc-plugin.pod b/plugins/cc/nbdkit-cc-plugin.pod index b7099beb..41223379 100644 --- a/plugins/cc/nbdkit-cc-plugin.pod +++ b/plugins/cc/nbdkit-cc-plugin.pod @@ -215,4 +215,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2020 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/cdi/Makefile.am b/plugins/cdi/Makefile.am index 7c96f8b3..6f8d2c55 100644 --- a/plugins/cdi/Makefile.am +++ b/plugins/cdi/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/cdi/cdi.c b/plugins/cdi/cdi.c index b5d885df..72a678e6 100644 --- a/plugins/cdi/cdi.c +++ b/plugins/cdi/cdi.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/cdi/nbdkit-cdi-plugin.pod b/plugins/cdi/nbdkit-cdi-plugin.pod index 0968f6c7..fdcb356e 100644 --- a/plugins/cdi/nbdkit-cdi-plugin.pod +++ b/plugins/cdi/nbdkit-cdi-plugin.pod @@ -96,4 +96,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2020 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/curl/Makefile.am b/plugins/curl/Makefile.am index d6b97a82..82c09582 100644 --- a/plugins/curl/Makefile.am +++ b/plugins/curl/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2014-2023 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/curl/curl.c b/plugins/curl/curl.c index b5e6277c..a40bd6bf 100644 --- a/plugins/curl/curl.c +++ b/plugins/curl/curl.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2014-2023 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/curl/curldefs.h b/plugins/curl/curldefs.h index 13d31e9d..1250c8d9 100644 --- a/plugins/curl/curldefs.h +++ b/plugins/curl/curldefs.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2014-2023 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/curl/nbdkit-curl-plugin.pod b/plugins/curl/nbdkit-curl-plugin.pod index b04914ca..070f9a0f 100644 --- a/plugins/curl/nbdkit-curl-plugin.pod +++ b/plugins/curl/nbdkit-curl-plugin.pod @@ -588,4 +588,4 @@ Parts derived from Alexander Graf's "QEMU Block driver for CURL images". =head1 COPYRIGHT -Copyright (C) 2014-2020 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/curl/pool.c b/plugins/curl/pool.c index b903cdc0..c0fec74f 100644 --- a/plugins/curl/pool.c +++ b/plugins/curl/pool.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2014-2023 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/curl/scripts.c b/plugins/curl/scripts.c index 958fd15f..b2f62589 100644 --- a/plugins/curl/scripts.c +++ b/plugins/curl/scripts.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2014-2023 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/data/Makefile.am b/plugins/data/Makefile.am index 2db904cf..db4ce812 100644 --- a/plugins/data/Makefile.am +++ b/plugins/data/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/data/data.c b/plugins/data/data.c index 3ff722fa..37096f1b 100644 --- a/plugins/data/data.c +++ b/plugins/data/data.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/data/data.h b/plugins/data/data.h index 9cb444d8..c0696fa6 100644 --- a/plugins/data/data.h +++ b/plugins/data/data.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/data/disk2data.pl b/plugins/data/disk2data.pl index 5a434dab..526778e9 100755 --- a/plugins/data/disk2data.pl +++ b/plugins/data/disk2data.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl # -*- perl -*- # Convert disk image or file to nbdkit-data-plugin command line. -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are @@ -106,7 +106,7 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018 Red Hat Inc. +Copyright Red Hat =cut diff --git a/plugins/data/format.c b/plugins/data/format.c index b8b7d995..fa643d71 100644 --- a/plugins/data/format.c +++ b/plugins/data/format.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/data/format.h b/plugins/data/format.h index 8ad690ec..83281be9 100644 --- a/plugins/data/format.h +++ b/plugins/data/format.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/data/nbdkit-data-plugin.pod b/plugins/data/nbdkit-data-plugin.pod index 32f52fde..cec1af7f 100644 --- a/plugins/data/nbdkit-data-plugin.pod +++ b/plugins/data/nbdkit-data-plugin.pod @@ -419,4 +419,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018-2020 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/eval/Makefile.am b/plugins/eval/Makefile.am index 5038a4c3..a891e778 100644 --- a/plugins/eval/Makefile.am +++ b/plugins/eval/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2017-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/eval/eval.c b/plugins/eval/eval.c index 5df0bad5..fbc15838 100644 --- a/plugins/eval/eval.c +++ b/plugins/eval/eval.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/eval/nbdkit-eval-plugin.pod b/plugins/eval/nbdkit-eval-plugin.pod index 0c10ae43..a19c3932 100644 --- a/plugins/eval/nbdkit-eval-plugin.pod +++ b/plugins/eval/nbdkit-eval-plugin.pod @@ -209,4 +209,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2019 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/example1/Makefile.am b/plugins/example1/Makefile.am index a50c863d..d14d0095 100644 --- a/plugins/example1/Makefile.am +++ b/plugins/example1/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/example1/example1.c b/plugins/example1/example1.c index efd01acb..5e33caa0 100644 --- a/plugins/example1/example1.c +++ b/plugins/example1/example1.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/example1/nbdkit-example1-plugin.pod b/plugins/example1/nbdkit-example1-plugin.pod index fe3e72a3..661d0c3f 100644 --- a/plugins/example1/nbdkit-example1-plugin.pod +++ b/plugins/example1/nbdkit-example1-plugin.pod @@ -45,4 +45,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2013 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/example2/Makefile.am b/plugins/example2/Makefile.am index e1739a08..47817f6e 100644 --- a/plugins/example2/Makefile.am +++ b/plugins/example2/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/example2/example2.c b/plugins/example2/example2.c index d7f8ed47..933cb06f 100644 --- a/plugins/example2/example2.c +++ b/plugins/example2/example2.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/example2/nbdkit-example2-plugin.pod b/plugins/example2/nbdkit-example2-plugin.pod index 59822d85..f911b804 100644 --- a/plugins/example2/nbdkit-example2-plugin.pod +++ b/plugins/example2/nbdkit-example2-plugin.pod @@ -54,4 +54,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2013 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/example2/winexample2.c b/plugins/example2/winexample2.c index 5ad8e9d1..1e8ae43f 100644 --- a/plugins/example2/winexample2.c +++ b/plugins/example2/winexample2.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/example3/Makefile.am b/plugins/example3/Makefile.am index 1c1baf1b..bd814272 100644 --- a/plugins/example3/Makefile.am +++ b/plugins/example3/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/example3/example3.c b/plugins/example3/example3.c index 19a3106c..a2c8d311 100644 --- a/plugins/example3/example3.c +++ b/plugins/example3/example3.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/example3/nbdkit-example3-plugin.pod b/plugins/example3/nbdkit-example3-plugin.pod index be38bb38..69324f0d 100644 --- a/plugins/example3/nbdkit-example3-plugin.pod +++ b/plugins/example3/nbdkit-example3-plugin.pod @@ -53,4 +53,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2013 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/example4/Makefile.am b/plugins/example4/Makefile.am index 2f0990ef..c22363b6 100644 --- a/plugins/example4/Makefile.am +++ b/plugins/example4/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/example4/example4.pl b/plugins/example4/example4.pl index 665a1a77..0b478a77 100644 --- a/plugins/example4/example4.pl +++ b/plugins/example4/example4.pl @@ -48,7 +48,7 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2017 Red Hat Inc. +Copyright Red Hat =cut diff --git a/plugins/file/Makefile.am b/plugins/file/Makefile.am index 286aa9f5..f3db5a83 100644 --- a/plugins/file/Makefile.am +++ b/plugins/file/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/file/file.c b/plugins/file/file.c index 2fcf7c5c..1720293e 100644 --- a/plugins/file/file.c +++ b/plugins/file/file.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/file/nbdkit-file-plugin.pod b/plugins/file/nbdkit-file-plugin.pod index 0f80d654..857ad21e 100644 --- a/plugins/file/nbdkit-file-plugin.pod +++ b/plugins/file/nbdkit-file-plugin.pod @@ -274,4 +274,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2013-2020 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/file/winfile.c b/plugins/file/winfile.c index ea7ebe82..8ec164be 100644 --- a/plugins/file/winfile.c +++ b/plugins/file/winfile.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/floppy/Makefile.am b/plugins/floppy/Makefile.am index 51e500cd..4ffe4f3a 100644 --- a/plugins/floppy/Makefile.am +++ b/plugins/floppy/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/floppy/directory-lfn.c b/plugins/floppy/directory-lfn.c index fe47e0b6..aa9b38ba 100644 --- a/plugins/floppy/directory-lfn.c +++ b/plugins/floppy/directory-lfn.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/floppy/floppy.c b/plugins/floppy/floppy.c index 9747ca00..95c82473 100644 --- a/plugins/floppy/floppy.c +++ b/plugins/floppy/floppy.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/floppy/nbdkit-floppy-plugin.pod b/plugins/floppy/nbdkit-floppy-plugin.pod index 6045cff6..2484197a 100644 --- a/plugins/floppy/nbdkit-floppy-plugin.pod +++ b/plugins/floppy/nbdkit-floppy-plugin.pod @@ -112,4 +112,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/floppy/virtual-floppy.c b/plugins/floppy/virtual-floppy.c index 2245cc0a..2a6871bc 100644 --- a/plugins/floppy/virtual-floppy.c +++ b/plugins/floppy/virtual-floppy.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/floppy/virtual-floppy.h b/plugins/floppy/virtual-floppy.h index 3be7c096..b3b7e6c8 100644 --- a/plugins/floppy/virtual-floppy.h +++ b/plugins/floppy/virtual-floppy.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/full/Makefile.am b/plugins/full/Makefile.am index 8fea2464..a93aeea3 100644 --- a/plugins/full/Makefile.am +++ b/plugins/full/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2017-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/full/full.c b/plugins/full/full.c index d0046fd6..a22950be 100644 --- a/plugins/full/full.c +++ b/plugins/full/full.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/full/nbdkit-full-plugin.pod b/plugins/full/nbdkit-full-plugin.pod index 33787374..5664aa2d 100644 --- a/plugins/full/nbdkit-full-plugin.pod +++ b/plugins/full/nbdkit-full-plugin.pod @@ -76,4 +76,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2017-2020 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/golang/Makefile.am b/plugins/golang/Makefile.am index 88bae576..ffc9c0ad 100644 --- a/plugins/golang/Makefile.am +++ b/plugins/golang/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2020-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/golang/config-test.go b/plugins/golang/config-test.go index 0f5cfe6b..b12a0a7e 100644 --- a/plugins/golang/config-test.go +++ b/plugins/golang/config-test.go @@ -1,5 +1,5 @@ /* Go configuration test - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/golang/dump-plugin-examples.sh b/plugins/golang/dump-plugin-examples.sh index 6779a1a1..dbb87820 100755 --- a/plugins/golang/dump-plugin-examples.sh +++ b/plugins/golang/dump-plugin-examples.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/golang/examples/disk/disk.go b/plugins/golang/examples/disk/disk.go index 4896dfd1..7a9315fa 100644 --- a/plugins/golang/examples/disk/disk.go +++ b/plugins/golang/examples/disk/disk.go @@ -1,5 +1,5 @@ /* Example plugin. - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/golang/examples/dump-plugin/dumpplugin.go b/plugins/golang/examples/dump-plugin/dumpplugin.go index d30ec3f1..6d84359b 100644 --- a/plugins/golang/examples/dump-plugin/dumpplugin.go +++ b/plugins/golang/examples/dump-plugin/dumpplugin.go @@ -1,5 +1,5 @@ /* Example plugin. - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/golang/examples/minimal/minimal.go b/plugins/golang/examples/minimal/minimal.go index 0f862889..5a05f9b2 100644 --- a/plugins/golang/examples/minimal/minimal.go +++ b/plugins/golang/examples/minimal/minimal.go @@ -1,5 +1,5 @@ /* Example plugin. - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/golang/examples/ramdisk/ramdisk.go b/plugins/golang/examples/ramdisk/ramdisk.go index 78cb1f4c..893b48c1 100644 --- a/plugins/golang/examples/ramdisk/ramdisk.go +++ b/plugins/golang/examples/ramdisk/ramdisk.go @@ -1,5 +1,5 @@ /* Example plugin. - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/golang/nbdkit-golang-plugin.pod b/plugins/golang/nbdkit-golang-plugin.pod index 34f9a6eb..3ba6d265 100644 --- a/plugins/golang/nbdkit-golang-plugin.pod +++ b/plugins/golang/nbdkit-golang-plugin.pod @@ -165,4 +165,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2020 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/golang/src/libguestfs.org/nbdkit/nbdkit.go b/plugins/golang/src/libguestfs.org/nbdkit/nbdkit.go index 79344be1..a047c193 100644 --- a/plugins/golang/src/libguestfs.org/nbdkit/nbdkit.go +++ b/plugins/golang/src/libguestfs.org/nbdkit/nbdkit.go @@ -1,5 +1,5 @@ /* Go helper functions. - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/golang/src/libguestfs.org/nbdkit/utils.go b/plugins/golang/src/libguestfs.org/nbdkit/utils.go index d9c0c188..1c981bf6 100644 --- a/plugins/golang/src/libguestfs.org/nbdkit/utils.go +++ b/plugins/golang/src/libguestfs.org/nbdkit/utils.go @@ -1,5 +1,5 @@ /* cgo wrappers. - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/golang/src/libguestfs.org/nbdkit/wrappers.go b/plugins/golang/src/libguestfs.org/nbdkit/wrappers.go index 604500c3..68fb563b 100644 --- a/plugins/golang/src/libguestfs.org/nbdkit/wrappers.go +++ b/plugins/golang/src/libguestfs.org/nbdkit/wrappers.go @@ -1,5 +1,5 @@ /* cgo wrappers. - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/golang/src/libguestfs.org/nbdkit/wrappers.h b/plugins/golang/src/libguestfs.org/nbdkit/wrappers.h index 522b7a95..016fb0ae 100644 --- a/plugins/golang/src/libguestfs.org/nbdkit/wrappers.h +++ b/plugins/golang/src/libguestfs.org/nbdkit/wrappers.h @@ -1,5 +1,5 @@ /* cgo wrappers. - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/guestfs/Makefile.am b/plugins/guestfs/Makefile.am index 86ae56b2..57f7ce27 100644 --- a/plugins/guestfs/Makefile.am +++ b/plugins/guestfs/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/guestfs/guestfs-plugin.c b/plugins/guestfs/guestfs-plugin.c index a81a2275..37021261 100644 --- a/plugins/guestfs/guestfs-plugin.c +++ b/plugins/guestfs/guestfs-plugin.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/guestfs/nbdkit-guestfs-plugin.pod b/plugins/guestfs/nbdkit-guestfs-plugin.pod index fc1c6025..feb6c37e 100644 --- a/plugins/guestfs/nbdkit-guestfs-plugin.pod +++ b/plugins/guestfs/nbdkit-guestfs-plugin.pod @@ -220,4 +220,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2013 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/info/Makefile.am b/plugins/info/Makefile.am index aa1de051..397ccdc3 100644 --- a/plugins/info/Makefile.am +++ b/plugins/info/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2017-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/info/info.c b/plugins/info/info.c index f2b464d7..d9d42e88 100644 --- a/plugins/info/info.c +++ b/plugins/info/info.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/info/nbdkit-info-plugin.pod b/plugins/info/nbdkit-info-plugin.pod index 4bc4aaef..c9b4cb89 100644 --- a/plugins/info/nbdkit-info-plugin.pod +++ b/plugins/info/nbdkit-info-plugin.pod @@ -218,4 +218,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2019 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/iso/Makefile.am b/plugins/iso/Makefile.am index bca0c95a..84f0c6b8 100644 --- a/plugins/iso/Makefile.am +++ b/plugins/iso/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/iso/iso.c b/plugins/iso/iso.c index 14d4bd50..6fc29b1a 100644 --- a/plugins/iso/iso.c +++ b/plugins/iso/iso.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/iso/nbdkit-iso-plugin.pod b/plugins/iso/nbdkit-iso-plugin.pod index af56474d..9e63cd72 100644 --- a/plugins/iso/nbdkit-iso-plugin.pod +++ b/plugins/iso/nbdkit-iso-plugin.pod @@ -143,4 +143,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/libvirt/Makefile.am b/plugins/libvirt/Makefile.am index bd8acbf6..a5ce2e85 100644 --- a/plugins/libvirt/Makefile.am +++ b/plugins/libvirt/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/libvirt/libvirt-plugin.c b/plugins/libvirt/libvirt-plugin.c index 354ab4e8..1aee70d7 100644 --- a/plugins/libvirt/libvirt-plugin.c +++ b/plugins/libvirt/libvirt-plugin.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/libvirt/nbdkit-libvirt-plugin.pod b/plugins/libvirt/nbdkit-libvirt-plugin.pod index 5188eed9..e2f23317 100644 --- a/plugins/libvirt/nbdkit-libvirt-plugin.pod +++ b/plugins/libvirt/nbdkit-libvirt-plugin.pod @@ -75,4 +75,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2013-2020 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/linuxdisk/Makefile.am b/plugins/linuxdisk/Makefile.am index 015152e6..ee1b0b6f 100644 --- a/plugins/linuxdisk/Makefile.am +++ b/plugins/linuxdisk/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/linuxdisk/filesystem.c b/plugins/linuxdisk/filesystem.c index a9f70640..3e4e2f3a 100644 --- a/plugins/linuxdisk/filesystem.c +++ b/plugins/linuxdisk/filesystem.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/linuxdisk/linuxdisk.c b/plugins/linuxdisk/linuxdisk.c index b30d61c4..315fdf16 100644 --- a/plugins/linuxdisk/linuxdisk.c +++ b/plugins/linuxdisk/linuxdisk.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/linuxdisk/nbdkit-linuxdisk-plugin.pod b/plugins/linuxdisk/nbdkit-linuxdisk-plugin.pod index f5ffa8f5..17992351 100644 --- a/plugins/linuxdisk/nbdkit-linuxdisk-plugin.pod +++ b/plugins/linuxdisk/nbdkit-linuxdisk-plugin.pod @@ -195,4 +195,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2019 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/linuxdisk/partition-gpt.c b/plugins/linuxdisk/partition-gpt.c index 01c68377..37abd479 100644 --- a/plugins/linuxdisk/partition-gpt.c +++ b/plugins/linuxdisk/partition-gpt.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/linuxdisk/virtual-disk.c b/plugins/linuxdisk/virtual-disk.c index 5fd84c87..bb062937 100644 --- a/plugins/linuxdisk/virtual-disk.c +++ b/plugins/linuxdisk/virtual-disk.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/linuxdisk/virtual-disk.h b/plugins/linuxdisk/virtual-disk.h index 1faae4b8..9dc01a4f 100644 --- a/plugins/linuxdisk/virtual-disk.h +++ b/plugins/linuxdisk/virtual-disk.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/lua/Makefile.am b/plugins/lua/Makefile.am index f0e12b8c..fb283025 100644 --- a/plugins/lua/Makefile.am +++ b/plugins/lua/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/lua/lua.c b/plugins/lua/lua.c index 0b68d75c..d9f00adb 100644 --- a/plugins/lua/lua.c +++ b/plugins/lua/lua.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/lua/nbdkit-lua-plugin.pod b/plugins/lua/nbdkit-lua-plugin.pod index 6b6d5d9d..ebdbdc94 100644 --- a/plugins/lua/nbdkit-lua-plugin.pod +++ b/plugins/lua/nbdkit-lua-plugin.pod @@ -300,4 +300,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/memory/Makefile.am b/plugins/memory/Makefile.am index f56faf06..17cf4af7 100644 --- a/plugins/memory/Makefile.am +++ b/plugins/memory/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2017-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/memory/memory.c b/plugins/memory/memory.c index 66a285ae..19d9a6cd 100644 --- a/plugins/memory/memory.c +++ b/plugins/memory/memory.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/memory/nbdkit-memory-plugin.pod b/plugins/memory/nbdkit-memory-plugin.pod index 9e546c3d..242b2ff1 100644 --- a/plugins/memory/nbdkit-memory-plugin.pod +++ b/plugins/memory/nbdkit-memory-plugin.pod @@ -197,4 +197,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2017-2020 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/nbd/Makefile.am b/plugins/nbd/Makefile.am index 30d61c82..e6d828d2 100644 --- a/plugins/nbd/Makefile.am +++ b/plugins/nbd/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2017-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/nbd/nbd.c b/plugins/nbd/nbd.c index ff9ba449..55a7f289 100644 --- a/plugins/nbd/nbd.c +++ b/plugins/nbd/nbd.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/nbd/nbdkit-nbd-plugin.pod b/plugins/nbd/nbdkit-nbd-plugin.pod index e907a10b..63bb4fea 100644 --- a/plugins/nbd/nbdkit-nbd-plugin.pod +++ b/plugins/nbd/nbdkit-nbd-plugin.pod @@ -350,4 +350,4 @@ Eric Blake =head1 COPYRIGHT -Copyright (C) 2017, 2019 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/null/Makefile.am b/plugins/null/Makefile.am index da82d06e..52744662 100644 --- a/plugins/null/Makefile.am +++ b/plugins/null/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2017-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/null/nbdkit-null-plugin.pod b/plugins/null/nbdkit-null-plugin.pod index f839106d..27fe6874 100644 --- a/plugins/null/nbdkit-null-plugin.pod +++ b/plugins/null/nbdkit-null-plugin.pod @@ -66,4 +66,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2017 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/null/null.c b/plugins/null/null.c index 4db108e4..2a2e8d4f 100644 --- a/plugins/null/null.c +++ b/plugins/null/null.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/ocaml/Makefile.am b/plugins/ocaml/Makefile.am index 48c7539b..da1b1ec9 100644 --- a/plugins/ocaml/Makefile.am +++ b/plugins/ocaml/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2014-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/ocaml/NBDKit.ml b/plugins/ocaml/NBDKit.ml index d035a3a9..e1cf28c9 100644 --- a/plugins/ocaml/NBDKit.ml +++ b/plugins/ocaml/NBDKit.ml @@ -1,6 +1,6 @@ (* hey emacs, this is OCaml code: -*- tuareg -*- *) (* nbdkit OCaml interface - * Copyright (C) 2014-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/ocaml/NBDKit.mli b/plugins/ocaml/NBDKit.mli index b5c8bb12..81447d07 100644 --- a/plugins/ocaml/NBDKit.mli +++ b/plugins/ocaml/NBDKit.mli @@ -1,6 +1,6 @@ (* hey emacs, this is OCaml code: -*- tuareg -*- *) (* nbdkit OCaml interface - * Copyright (C) 2014-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/ocaml/bindings.c b/plugins/ocaml/bindings.c index 4e9b4b5a..f2c9ca07 100644 --- a/plugins/ocaml/bindings.c +++ b/plugins/ocaml/bindings.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2014-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/ocaml/callbacks.h b/plugins/ocaml/callbacks.h index 46bf548d..94841792 100644 --- a/plugins/ocaml/callbacks.h +++ b/plugins/ocaml/callbacks.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2014-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/ocaml/nbdkit-ocaml-plugin.pod b/plugins/ocaml/nbdkit-ocaml-plugin.pod index 38e605d9..dc826017 100644 --- a/plugins/ocaml/nbdkit-ocaml-plugin.pod +++ b/plugins/ocaml/nbdkit-ocaml-plugin.pod @@ -163,4 +163,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2014-2021 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/ocaml/plugin.c b/plugins/ocaml/plugin.c index 05670254..722b95e4 100644 --- a/plugins/ocaml/plugin.c +++ b/plugins/ocaml/plugin.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2014-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/ocaml/plugin.h b/plugins/ocaml/plugin.h index cd9d3fd6..572c43c0 100644 --- a/plugins/ocaml/plugin.h +++ b/plugins/ocaml/plugin.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2014-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/ondemand/Makefile.am b/plugins/ondemand/Makefile.am index 18d85e83..9068f627 100644 --- a/plugins/ondemand/Makefile.am +++ b/plugins/ondemand/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2017-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/ondemand/default-command.sh.in b/plugins/ondemand/default-command.sh.in index 2baafc99..9e47d20d 100644 --- a/plugins/ondemand/default-command.sh.in +++ b/plugins/ondemand/default-command.sh.in @@ -1,6 +1,6 @@ # nbdkit # -*- mode: shell-script -*- -# Copyright (C) 2017-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/ondemand/nbdkit-ondemand-plugin.pod b/plugins/ondemand/nbdkit-ondemand-plugin.pod index 5ad0cf93..808f3935 100644 --- a/plugins/ondemand/nbdkit-ondemand-plugin.pod +++ b/plugins/ondemand/nbdkit-ondemand-plugin.pod @@ -208,4 +208,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018-2020 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/ondemand/ondemand.c b/plugins/ondemand/ondemand.c index 0e3b28b3..5f94daf0 100644 --- a/plugins/ondemand/ondemand.c +++ b/plugins/ondemand/ondemand.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/partitioning/Makefile.am b/plugins/partitioning/Makefile.am index e7a254e3..d38976d3 100644 --- a/plugins/partitioning/Makefile.am +++ b/plugins/partitioning/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/partitioning/nbdkit-partitioning-plugin.pod b/plugins/partitioning/nbdkit-partitioning-plugin.pod index 7d9432e0..a39d9f3e 100644 --- a/plugins/partitioning/nbdkit-partitioning-plugin.pod +++ b/plugins/partitioning/nbdkit-partitioning-plugin.pod @@ -208,4 +208,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/partitioning/partition-gpt.c b/plugins/partitioning/partition-gpt.c index dee1fbc7..e2f0abac 100644 --- a/plugins/partitioning/partition-gpt.c +++ b/plugins/partitioning/partition-gpt.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/partitioning/partition-mbr.c b/plugins/partitioning/partition-mbr.c index 1f178dcb..accb399d 100644 --- a/plugins/partitioning/partition-mbr.c +++ b/plugins/partitioning/partition-mbr.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/partitioning/partitioning.c b/plugins/partitioning/partitioning.c index 52ffb1b6..4593601d 100644 --- a/plugins/partitioning/partitioning.c +++ b/plugins/partitioning/partitioning.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/partitioning/virtual-disk.c b/plugins/partitioning/virtual-disk.c index d46ca46a..27ea24d6 100644 --- a/plugins/partitioning/virtual-disk.c +++ b/plugins/partitioning/virtual-disk.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/partitioning/virtual-disk.h b/plugins/partitioning/virtual-disk.h index 8bafd467..88702203 100644 --- a/plugins/partitioning/virtual-disk.h +++ b/plugins/partitioning/virtual-disk.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/pattern/Makefile.am b/plugins/pattern/Makefile.am index c4a0406f..2866b8d5 100644 --- a/plugins/pattern/Makefile.am +++ b/plugins/pattern/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2017-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/pattern/nbdkit-pattern-plugin.pod b/plugins/pattern/nbdkit-pattern-plugin.pod index 9216c55a..c5d4f0d3 100644 --- a/plugins/pattern/nbdkit-pattern-plugin.pod +++ b/plugins/pattern/nbdkit-pattern-plugin.pod @@ -100,4 +100,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/pattern/pattern.c b/plugins/pattern/pattern.c index 4a8b79c1..3d2bb604 100644 --- a/plugins/pattern/pattern.c +++ b/plugins/pattern/pattern.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/perl/Makefile.am b/plugins/perl/Makefile.am index 82a6cfc5..128a1498 100644 --- a/plugins/perl/Makefile.am +++ b/plugins/perl/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/perl/nbdkit-perl-plugin.pod b/plugins/perl/nbdkit-perl-plugin.pod index 7f15b4c7..89a9b10e 100644 --- a/plugins/perl/nbdkit-perl-plugin.pod +++ b/plugins/perl/nbdkit-perl-plugin.pod @@ -390,4 +390,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2013-2020 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/perl/perl.c b/plugins/perl/perl.c index a8944457..cccf6836 100644 --- a/plugins/perl/perl.c +++ b/plugins/perl/perl.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/plugins.syms b/plugins/plugins.syms index edcc6c59..2ff49106 100644 --- a/plugins/plugins.syms +++ b/plugins/plugins.syms @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/python/Makefile.am b/plugins/python/Makefile.am index 4973ddad..69aa0386 100644 --- a/plugins/python/Makefile.am +++ b/plugins/python/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/python/errors.c b/plugins/python/errors.c index fb838e13..b59cbedb 100644 --- a/plugins/python/errors.c +++ b/plugins/python/errors.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/python/helpers.c b/plugins/python/helpers.c index 4491e027..b7905c28 100644 --- a/plugins/python/helpers.c +++ b/plugins/python/helpers.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/python/modfunctions.c b/plugins/python/modfunctions.c index a80adafa..479707e7 100644 --- a/plugins/python/modfunctions.c +++ b/plugins/python/modfunctions.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/python/nbdkit-python-plugin.pod b/plugins/python/nbdkit-python-plugin.pod index ccc9406f..e328cc2e 100644 --- a/plugins/python/nbdkit-python-plugin.pod +++ b/plugins/python/nbdkit-python-plugin.pod @@ -575,4 +575,4 @@ Nir Soffer =head1 COPYRIGHT -Copyright (C) 2013-2021 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/python/plugin.c b/plugins/python/plugin.c index fbd2e29c..d80b79d5 100644 --- a/plugins/python/plugin.c +++ b/plugins/python/plugin.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/python/plugin.h b/plugins/python/plugin.h index 819558c4..f9b537cc 100644 --- a/plugins/python/plugin.h +++ b/plugins/python/plugin.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/random/Makefile.am b/plugins/random/Makefile.am index 3ce53422..e46b9573 100644 --- a/plugins/random/Makefile.am +++ b/plugins/random/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2017-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/random/nbdkit-random-plugin.pod b/plugins/random/nbdkit-random-plugin.pod index a869515b..040d86bf 100644 --- a/plugins/random/nbdkit-random-plugin.pod +++ b/plugins/random/nbdkit-random-plugin.pod @@ -88,4 +88,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018-2020 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/random/random.c b/plugins/random/random.c index f9efeabb..aadb31d0 100644 --- a/plugins/random/random.c +++ b/plugins/random/random.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/ruby/Makefile.am b/plugins/ruby/Makefile.am index becca09e..6b34cdf6 100644 --- a/plugins/ruby/Makefile.am +++ b/plugins/ruby/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/ruby/nbdkit-ruby-plugin.pod b/plugins/ruby/nbdkit-ruby-plugin.pod index b0aa3566..d33f97cf 100644 --- a/plugins/ruby/nbdkit-ruby-plugin.pod +++ b/plugins/ruby/nbdkit-ruby-plugin.pod @@ -315,4 +315,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2013-2020 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/ruby/ruby.c b/plugins/ruby/ruby.c index eba88748..175a4cf6 100644 --- a/plugins/ruby/ruby.c +++ b/plugins/ruby/ruby.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/rust/Makefile.am b/plugins/rust/Makefile.am index 14fc1954..20580b90 100644 --- a/plugins/rust/Makefile.am +++ b/plugins/rust/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2019-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/sh/Makefile.am b/plugins/sh/Makefile.am index 46b950b4..d8adf186 100644 --- a/plugins/sh/Makefile.am +++ b/plugins/sh/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/sh/call.c b/plugins/sh/call.c index 705b50b9..a07935b9 100644 --- a/plugins/sh/call.c +++ b/plugins/sh/call.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/sh/call.h b/plugins/sh/call.h index 8a2fe8de..296f1fe2 100644 --- a/plugins/sh/call.h +++ b/plugins/sh/call.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/sh/methods.c b/plugins/sh/methods.c index 834393b2..736cd8ef 100644 --- a/plugins/sh/methods.c +++ b/plugins/sh/methods.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/sh/methods.h b/plugins/sh/methods.h index d405ef00..d910dc27 100644 --- a/plugins/sh/methods.h +++ b/plugins/sh/methods.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/sh/nbdkit-sh-plugin.pod b/plugins/sh/nbdkit-sh-plugin.pod index 27d21b84..b2c946a0 100644 --- a/plugins/sh/nbdkit-sh-plugin.pod +++ b/plugins/sh/nbdkit-sh-plugin.pod @@ -616,4 +616,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018-2022 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/sh/sh.c b/plugins/sh/sh.c index ba5f159d..ac8133bb 100644 --- a/plugins/sh/sh.c +++ b/plugins/sh/sh.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/sparse-random/Makefile.am b/plugins/sparse-random/Makefile.am index 0ef61cc2..a053285a 100644 --- a/plugins/sparse-random/Makefile.am +++ b/plugins/sparse-random/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2017-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/sparse-random/nbdkit-sparse-random-plugin.pod b/plugins/sparse-random/nbdkit-sparse-random-plugin.pod index 12e2798b..03e98ee1 100644 --- a/plugins/sparse-random/nbdkit-sparse-random-plugin.pod +++ b/plugins/sparse-random/nbdkit-sparse-random-plugin.pod @@ -122,4 +122,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018-2021 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/sparse-random/sparse-random.c b/plugins/sparse-random/sparse-random.c index 92496914..f8c6823c 100644 --- a/plugins/sparse-random/sparse-random.c +++ b/plugins/sparse-random/sparse-random.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/split/Makefile.am b/plugins/split/Makefile.am index c13ef8fe..f1cf793a 100644 --- a/plugins/split/Makefile.am +++ b/plugins/split/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2017-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/split/nbdkit-split-plugin.pod b/plugins/split/nbdkit-split-plugin.pod index 274f5b02..275bdba3 100644 --- a/plugins/split/nbdkit-split-plugin.pod +++ b/plugins/split/nbdkit-split-plugin.pod @@ -99,4 +99,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2017 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/split/split.c b/plugins/split/split.c index 2d12df66..f9828d84 100644 --- a/plugins/split/split.c +++ b/plugins/split/split.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/ssh/Makefile.am b/plugins/ssh/Makefile.am index 69f86d5b..b06a1525 100644 --- a/plugins/ssh/Makefile.am +++ b/plugins/ssh/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2014-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/ssh/nbdkit-ssh-plugin.pod b/plugins/ssh/nbdkit-ssh-plugin.pod index bb922d37..15764abb 100644 --- a/plugins/ssh/nbdkit-ssh-plugin.pod +++ b/plugins/ssh/nbdkit-ssh-plugin.pod @@ -361,4 +361,4 @@ Parts derived from Pino Toscano’s qemu libssh driver. =head1 COPYRIGHT -Copyright (C) 2014-2020 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/ssh/ssh.c b/plugins/ssh/ssh.c index 4967bf00..7666cd14 100644 --- a/plugins/ssh/ssh.c +++ b/plugins/ssh/ssh.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2014-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/tcl/Makefile.am b/plugins/tcl/Makefile.am index 1b9289af..ee61924e 100644 --- a/plugins/tcl/Makefile.am +++ b/plugins/tcl/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/tcl/nbdkit-tcl-plugin.pod b/plugins/tcl/nbdkit-tcl-plugin.pod index c996d5f7..684107ba 100644 --- a/plugins/tcl/nbdkit-tcl-plugin.pod +++ b/plugins/tcl/nbdkit-tcl-plugin.pod @@ -306,4 +306,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/tcl/tcl.c b/plugins/tcl/tcl.c index cc8e5b22..141eb86c 100644 --- a/plugins/tcl/tcl.c +++ b/plugins/tcl/tcl.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/tmpdisk/Makefile.am b/plugins/tmpdisk/Makefile.am index a4c3d9b0..2a1648ee 100644 --- a/plugins/tmpdisk/Makefile.am +++ b/plugins/tmpdisk/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2017-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/tmpdisk/default-command.sh.in b/plugins/tmpdisk/default-command.sh.in index d60402b5..0c7de62e 100644 --- a/plugins/tmpdisk/default-command.sh.in +++ b/plugins/tmpdisk/default-command.sh.in @@ -1,6 +1,6 @@ # nbdkit # -*- mode: shell-script -*- -# Copyright (C) 2017-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/tmpdisk/nbdkit-tmpdisk-plugin.pod b/plugins/tmpdisk/nbdkit-tmpdisk-plugin.pod index b098f2ab..38ee7c60 100644 --- a/plugins/tmpdisk/nbdkit-tmpdisk-plugin.pod +++ b/plugins/tmpdisk/nbdkit-tmpdisk-plugin.pod @@ -211,4 +211,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018-2020 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/tmpdisk/tmpdisk.c b/plugins/tmpdisk/tmpdisk.c index aab70085..45b58427 100644 --- a/plugins/tmpdisk/tmpdisk.c +++ b/plugins/tmpdisk/tmpdisk.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/torrent/Makefile.am b/plugins/torrent/Makefile.am index bc5ace3c..4cd37a5a 100644 --- a/plugins/torrent/Makefile.am +++ b/plugins/torrent/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2023 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/torrent/nbdkit-torrent-plugin.pod b/plugins/torrent/nbdkit-torrent-plugin.pod index f09ac3d2..b29990f5 100644 --- a/plugins/torrent/nbdkit-torrent-plugin.pod +++ b/plugins/torrent/nbdkit-torrent-plugin.pod @@ -186,4 +186,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2020 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/torrent/torrent.cpp b/plugins/torrent/torrent.cpp index cc718234..f229b3fe 100644 --- a/plugins/torrent/torrent.cpp +++ b/plugins/torrent/torrent.cpp @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2023 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/vddk/Makefile.am b/plugins/vddk/Makefile.am index 40461f1d..72322a3f 100644 --- a/plugins/vddk/Makefile.am +++ b/plugins/vddk/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/vddk/nbdkit-vddk-plugin.pod b/plugins/vddk/nbdkit-vddk-plugin.pod index 60254576..704ff63c 100644 --- a/plugins/vddk/nbdkit-vddk-plugin.pod +++ b/plugins/vddk/nbdkit-vddk-plugin.pod @@ -750,4 +750,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2013-2020 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/vddk/reexec.c b/plugins/vddk/reexec.c index 5d5e9b62..9439f013 100644 --- a/plugins/vddk/reexec.c +++ b/plugins/vddk/reexec.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/vddk/stats.c b/plugins/vddk/stats.c index c16338b1..7f63333a 100644 --- a/plugins/vddk/stats.c +++ b/plugins/vddk/stats.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/vddk/utils.c b/plugins/vddk/utils.c index f0c19950..bbc2ddf7 100644 --- a/plugins/vddk/utils.c +++ b/plugins/vddk/utils.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/vddk/vddk-structs.h b/plugins/vddk/vddk-structs.h index 4c7c6fe2..666319dd 100644 --- a/plugins/vddk/vddk-structs.h +++ b/plugins/vddk/vddk-structs.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/vddk/vddk-stubs.h b/plugins/vddk/vddk-stubs.h index d5affa10..8620d11a 100644 --- a/plugins/vddk/vddk-stubs.h +++ b/plugins/vddk/vddk-stubs.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/vddk/vddk.c b/plugins/vddk/vddk.c index 2c6836de..1233c84e 100644 --- a/plugins/vddk/vddk.c +++ b/plugins/vddk/vddk.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/vddk/vddk.h b/plugins/vddk/vddk.h index 1f33a1e1..fb0c79a8 100644 --- a/plugins/vddk/vddk.h +++ b/plugins/vddk/vddk.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/vddk/worker.c b/plugins/vddk/worker.c index ee18a7a0..467d00ca 100644 --- a/plugins/vddk/worker.c +++ b/plugins/vddk/worker.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/plugins/zero/Makefile.am b/plugins/zero/Makefile.am index ab71bc7f..1f351ec1 100644 --- a/plugins/zero/Makefile.am +++ b/plugins/zero/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2017-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/plugins/zero/nbdkit-zero-plugin.pod b/plugins/zero/nbdkit-zero-plugin.pod index ea6af23e..03544ad6 100644 --- a/plugins/zero/nbdkit-zero-plugin.pod +++ b/plugins/zero/nbdkit-zero-plugin.pod @@ -47,4 +47,4 @@ Richard W.M. Jones =head1 COPYRIGHT -Copyright (C) 2018 Red Hat Inc. +Copyright Red Hat diff --git a/plugins/zero/zero.c b/plugins/zero/zero.c index 56a8e1a2..3aa918f1 100644 --- a/plugins/zero/zero.c +++ b/plugins/zero/zero.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/podwrapper.pl.in b/podwrapper.pl.in index e28020a0..021b5245 100755 --- a/podwrapper.pl.in +++ b/podwrapper.pl.in @@ -1,7 +1,7 @@ #!/usr/bin/env perl # podwrapper.pl # @configure_input@ -# Copyright (C) 2010-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are @@ -602,4 +602,4 @@ Richard W.M. Jones. =head1 COPYRIGHT -Copyright (C) 2010-2021 Red Hat Inc. +Copyright Red Hat diff --git a/scripts/git.orderfile b/scripts/git.orderfile index 3572a299..0601b6c1 100644 --- a/scripts/git.orderfile +++ b/scripts/git.orderfile @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/server/Makefile.am b/server/Makefile.am index 63c2c34e..c79c0dde 100644 --- a/server/Makefile.am +++ b/server/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/server/backend.c b/server/backend.c index 45889ea9..ef7df67c 100644 --- a/server/backend.c +++ b/server/backend.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2023 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/background.c b/server/background.c index f2cf2d14..600876ac 100644 --- a/server/background.c +++ b/server/background.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/captive.c b/server/captive.c index 40cf9e4b..77b8b208 100644 --- a/server/captive.c +++ b/server/captive.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/connections.c b/server/connections.c index 2d146646..a354dc02 100644 --- a/server/connections.c +++ b/server/connections.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2023 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/crypto.c b/server/crypto.c index 873fcd32..56f48efb 100644 --- a/server/crypto.c +++ b/server/crypto.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/debug-flags.c b/server/debug-flags.c index a804f1e4..8970877c 100644 --- a/server/debug-flags.c +++ b/server/debug-flags.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/debug.c b/server/debug.c index b28df70f..1b5ddaaf 100644 --- a/server/debug.c +++ b/server/debug.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/exports.c b/server/exports.c index 5184696a..7fb150f7 100644 --- a/server/exports.c +++ b/server/exports.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/extents.c b/server/extents.c index f2c8673b..c5f2fe3a 100644 --- a/server/extents.c +++ b/server/extents.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/filters.c b/server/filters.c index ae7e1a56..f32a9b46 100644 --- a/server/filters.c +++ b/server/filters.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/fuzzer.c b/server/fuzzer.c index 6c57e0f6..80f6245e 100644 --- a/server/fuzzer.c +++ b/server/fuzzer.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/internal.h b/server/internal.h index 634fc7cb..4b6e2915 100644 --- a/server/internal.h +++ b/server/internal.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2023 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/local/nbdkit.pc.in b/server/local/nbdkit.pc.in index 1d8b6bee..c122a6be 100644 --- a/server/local/nbdkit.pc.in +++ b/server/local/nbdkit.pc.in @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/server/locks.c b/server/locks.c index 9269c75e..fdcc39d5 100644 --- a/server/locks.c +++ b/server/locks.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/log-stderr.c b/server/log-stderr.c index dd31e491..8a55f5df 100644 --- a/server/log-stderr.c +++ b/server/log-stderr.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/log-syslog.c b/server/log-syslog.c index de278cfb..76c5035b 100644 --- a/server/log-syslog.c +++ b/server/log-syslog.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/log.c b/server/log.c index be355374..464e4f9a 100644 --- a/server/log.c +++ b/server/log.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/main.c b/server/main.c index a213f6d5..631401b7 100644 --- a/server/main.c +++ b/server/main.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/nbdkit.pc.in b/server/nbdkit.pc.in index ad37edd6..bf45f233 100644 --- a/server/nbdkit.pc.in +++ b/server/nbdkit.pc.in @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/server/nbdkit.syms b/server/nbdkit.syms index 45cf3b45..353ea2a9 100644 --- a/server/nbdkit.syms +++ b/server/nbdkit.syms @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/server/options.h b/server/options.h index 39299b9d..aedaf1c1 100644 --- a/server/options.h +++ b/server/options.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/plugins.c b/server/plugins.c index f1e1c415..1faac348 100644 --- a/server/plugins.c +++ b/server/plugins.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/protocol-handshake-newstyle.c b/server/protocol-handshake-newstyle.c index 4b4a1359..b70732b6 100644 --- a/server/protocol-handshake-newstyle.c +++ b/server/protocol-handshake-newstyle.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/protocol-handshake-oldstyle.c b/server/protocol-handshake-oldstyle.c index d4692362..4dfcc56f 100644 --- a/server/protocol-handshake-oldstyle.c +++ b/server/protocol-handshake-oldstyle.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/protocol-handshake.c b/server/protocol-handshake.c index 67762192..36c23fd4 100644 --- a/server/protocol-handshake.c +++ b/server/protocol-handshake.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/protocol.c b/server/protocol.c index f4f0263e..d9a5e282 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2023 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/public.c b/server/public.c index d3fde614..71ea6779 100644 --- a/server/public.c +++ b/server/public.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2023 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/quit.c b/server/quit.c index 668cd623..dc78e67d 100644 --- a/server/quit.c +++ b/server/quit.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/signals.c b/server/signals.c index f463ccd8..33884d9a 100644 --- a/server/signals.c +++ b/server/signals.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/socket-activation.c b/server/socket-activation.c index 379355d9..d030cac5 100644 --- a/server/socket-activation.c +++ b/server/socket-activation.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/sockets.c b/server/sockets.c index 8272be8f..fe8b2440 100644 --- a/server/sockets.c +++ b/server/sockets.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/test-public.c b/server/test-public.c index 56174460..67641129 100644 --- a/server/test-public.c +++ b/server/test-public.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2023 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/threadlocal.c b/server/threadlocal.c index 0cac11e5..2ace6009 100644 --- a/server/threadlocal.c +++ b/server/threadlocal.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/usergroup.c b/server/usergroup.c index 279e565b..23a7cee8 100644 --- a/server/usergroup.c +++ b/server/usergroup.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2019 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/server/vfprintf.c b/server/vfprintf.c index 2980c9b4..81a364fa 100644 --- a/server/vfprintf.c +++ b/server/vfprintf.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/Makefile.am b/tests/Makefile.am index efd0a686..9b846d24 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2013-2023 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/dummy-vddk.c b/tests/dummy-vddk.c index be321a88..d613efb7 100644 --- a/tests/dummy-vddk.c +++ b/tests/dummy-vddk.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/functions.sh.in b/tests/functions.sh.in index 10e2a4b3..a199db89 100644 --- a/tests/functions.sh.in +++ b/tests/functions.sh.in @@ -1,6 +1,6 @@ # nbdkit # @configure_input@ -# Copyright (C) 2017-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/generate-file-data.sh b/tests/generate-file-data.sh index 40cd08e7..cff74dd4 100755 --- a/tests/generate-file-data.sh +++ b/tests/generate-file-data.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Copyright (C) 2019 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/make-pki.sh.in b/tests/make-pki.sh.in index 50928861..8740b757 100644 --- a/tests/make-pki.sh.in +++ b/tests/make-pki.sh.in @@ -1,7 +1,7 @@ #!/usr/bin/env bash # nbdkit # @configure_input@ -# Copyright (C) 2017-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/make-psk.sh b/tests/make-psk.sh index 178f4bed..93b85cbb 100755 --- a/tests/make-psk.sh +++ b/tests/make-psk.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/pycodestyle.sh b/tests/pycodestyle.sh index 0b97ec5d..ab105722 100755 --- a/tests/pycodestyle.sh +++ b/tests/pycodestyle.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # nbdkit # Checking python style -# Copyright (C) 2017-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/python-exception.py b/tests/python-exception.py index 162b3735..c92aaac3 100644 --- a/tests/python-exception.py +++ b/tests/python-exception.py @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/python-export-list.py b/tests/python-export-list.py index 6feb6782..275598ce 100644 --- a/tests/python-export-list.py +++ b/tests/python-export-list.py @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/python-export-name.py b/tests/python-export-name.py index f62fd60b..c3e3b361 100644 --- a/tests/python-export-name.py +++ b/tests/python-export-name.py @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/python-thread-model.py b/tests/python-thread-model.py index 9e829c50..eae2403c 100644 --- a/tests/python-thread-model.py +++ b/tests/python-thread-model.py @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-S3-unit.sh b/tests/test-S3-unit.sh index 58d72443..318ae66d 100755 --- a/tests/test-S3-unit.sh +++ b/tests/test-S3-unit.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-S3.sh b/tests/test-S3.sh index d9b497f6..ec217770 100755 --- a/tests/test-S3.sh +++ b/tests/test-S3.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-S3/boto3/__init__.py b/tests/test-S3/boto3/__init__.py index ca911994..40d248a0 100644 --- a/tests/test-S3/boto3/__init__.py +++ b/tests/test-S3/boto3/__init__.py @@ -1,6 +1,6 @@ # -*- python -*- # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-S3/botocore/exceptions.py b/tests/test-S3/botocore/exceptions.py index 3a31ef29..4e051708 100644 --- a/tests/test-S3/botocore/exceptions.py +++ b/tests/test-S3/botocore/exceptions.py @@ -1,6 +1,6 @@ # -*- python -*- # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-ansi-c-plugin.c b/tests/test-ansi-c-plugin.c index 14599c4f..478342c3 100644 --- a/tests/test-ansi-c-plugin.c +++ b/tests/test-ansi-c-plugin.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-ansi-c.sh b/tests/test-ansi-c.sh index bd5e11ff..9f64f453 100755 --- a/tests/test-ansi-c.sh +++ b/tests/test-ansi-c.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2017-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-binary.sh b/tests/test-binary.sh index 9e102b62..511505f8 100755 --- a/tests/test-binary.sh +++ b/tests/test-binary.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-blkio.sh b/tests/test-blkio.sh index 7b3e63b4..4e45126d 100755 --- a/tests/test-blkio.sh +++ b/tests/test-blkio.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020-2023 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-block-size-constraints.sh b/tests/test-block-size-constraints.sh index cc4282a6..e282923d 100755 --- a/tests/test-block-size-constraints.sh +++ b/tests/test-block-size-constraints.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-blocksize-default.sh b/tests/test-blocksize-default.sh index 80d19dde..2736a8a1 100755 --- a/tests/test-blocksize-default.sh +++ b/tests/test-blocksize-default.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-blocksize-error-policy.sh b/tests/test-blocksize-error-policy.sh index 7d96910e..322c1376 100755 --- a/tests/test-blocksize-error-policy.sh +++ b/tests/test-blocksize-error-policy.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-blocksize-extents.sh b/tests/test-blocksize-extents.sh index 4b770049..ceec66b9 100755 --- a/tests/test-blocksize-extents.sh +++ b/tests/test-blocksize-extents.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-blocksize-policy.sh b/tests/test-blocksize-policy.sh index e0c29266..50522c9c 100755 --- a/tests/test-blocksize-policy.sh +++ b/tests/test-blocksize-policy.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-blocksize-sharding.sh b/tests/test-blocksize-sharding.sh index cb18bce5..9ce32829 100755 --- a/tests/test-blocksize-sharding.sh +++ b/tests/test-blocksize-sharding.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-blocksize-write-disconnect.sh b/tests/test-blocksize-write-disconnect.sh index 0af2222d..1d3c1326 100755 --- a/tests/test-blocksize-write-disconnect.sh +++ b/tests/test-blocksize-write-disconnect.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-blocksize.sh b/tests/test-blocksize.sh index 912ccc1e..95f0f658 100755 --- a/tests/test-blocksize.sh +++ b/tests/test-blocksize.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-cache-block-size.sh b/tests/test-cache-block-size.sh index e8f3c21d..5ce80f98 100755 --- a/tests/test-cache-block-size.sh +++ b/tests/test-cache-block-size.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-cache-max-size.sh b/tests/test-cache-max-size.sh index 70199cff..a223aac3 100755 --- a/tests/test-cache-max-size.sh +++ b/tests/test-cache-max-size.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-cache-on-read-caches.sh b/tests/test-cache-on-read-caches.sh index 80b34159..728e57e5 100755 --- a/tests/test-cache-on-read-caches.sh +++ b/tests/test-cache-on-read-caches.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-cache-on-read.sh b/tests/test-cache-on-read.sh index 85ca83d4..48b53b94 100755 --- a/tests/test-cache-on-read.sh +++ b/tests/test-cache-on-read.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-cache-unaligned.sh b/tests/test-cache-unaligned.sh index f12d11a8..a7c8a679 100755 --- a/tests/test-cache-unaligned.sh +++ b/tests/test-cache-unaligned.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-cache.sh b/tests/test-cache.sh index cf64161c..fc4a1dcf 100755 --- a/tests/test-cache.sh +++ b/tests/test-cache.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-cacheextents.sh b/tests/test-cacheextents.sh index 9368bc5c..3cb6cb3f 100755 --- a/tests/test-cacheextents.sh +++ b/tests/test-cacheextents.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-captive-tls.sh b/tests/test-captive-tls.sh index 08073bf5..5787e724 100755 --- a/tests/test-captive-tls.sh +++ b/tests/test-captive-tls.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2014-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-captive.sh b/tests/test-captive.sh index 871539c8..6421892d 100755 --- a/tests/test-captive.sh +++ b/tests/test-captive.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2014-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-cc-cpp.cpp b/tests/test-cc-cpp.cpp index d567f3ce..9c8d9767 100644 --- a/tests/test-cc-cpp.cpp +++ b/tests/test-cc-cpp.cpp @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-cc-cpp.sh b/tests/test-cc-cpp.sh index 54ada755..9a4c1624 100755 --- a/tests/test-cc-cpp.sh +++ b/tests/test-cc-cpp.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-cc-ocaml.sh b/tests/test-cc-ocaml.sh index 3ada1ddb..659fa195 100755 --- a/tests/test-cc-ocaml.sh +++ b/tests/test-cc-ocaml.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-cc.sh b/tests/test-cc.sh index e4519c6a..2a719d31 100755 --- a/tests/test-cc.sh +++ b/tests/test-cc.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-cdi.sh b/tests/test-cdi.sh index c06063cb..87884c71 100755 --- a/tests/test-cdi.sh +++ b/tests/test-cdi.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-checkwrite-bounds.sh b/tests/test-checkwrite-bounds.sh index 6a8759c5..1f4d2874 100755 --- a/tests/test-checkwrite-bounds.sh +++ b/tests/test-checkwrite-bounds.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-checkwrite-fail.sh b/tests/test-checkwrite-fail.sh index 0cc40cd9..dd64e15d 100755 --- a/tests/test-checkwrite-fail.sh +++ b/tests/test-checkwrite-fail.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-checkwrite.sh b/tests/test-checkwrite.sh index b3bafcc4..8b1219dd 100755 --- a/tests/test-checkwrite.sh +++ b/tests/test-checkwrite.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-client-death-tls.sh b/tests/test-client-death-tls.sh index 49b3ec18..0bb4cf2e 100755 --- a/tests/test-client-death-tls.sh +++ b/tests/test-client-death-tls.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2023 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-client-death.sh b/tests/test-client-death.sh index d7f57ca9..8fb46337 100755 --- a/tests/test-client-death.sh +++ b/tests/test-client-death.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2023 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-connect.c b/tests/test-connect.c index 13143f46..f463415b 100644 --- a/tests/test-connect.c +++ b/tests/test-connect.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-cow-block-size.sh b/tests/test-cow-block-size.sh index 5c77f428..25dd8667 100755 --- a/tests/test-cow-block-size.sh +++ b/tests/test-cow-block-size.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-cow-extents-large.sh b/tests/test-cow-extents-large.sh index 540efec6..3c0e50ee 100755 --- a/tests/test-cow-extents-large.sh +++ b/tests/test-cow-extents-large.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-cow-extents1.sh b/tests/test-cow-extents1.sh index 35991735..f1e57885 100755 --- a/tests/test-cow-extents1.sh +++ b/tests/test-cow-extents1.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-cow-extents2.sh b/tests/test-cow-extents2.sh index 2b464d6f..1aa3c830 100755 --- a/tests/test-cow-extents2.sh +++ b/tests/test-cow-extents2.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-cow-null.sh b/tests/test-cow-null.sh index d2357de8..9a06ff81 100755 --- a/tests/test-cow-null.sh +++ b/tests/test-cow-null.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-cow-on-read-caches.sh b/tests/test-cow-on-read-caches.sh index 297b3292..7be44d40 100755 --- a/tests/test-cow-on-read-caches.sh +++ b/tests/test-cow-on-read-caches.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-cow-on-read.sh b/tests/test-cow-on-read.sh index d7e76c5f..2c556055 100755 --- a/tests/test-cow-on-read.sh +++ b/tests/test-cow-on-read.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-cow-unaligned.sh b/tests/test-cow-unaligned.sh index 87c662b6..d54da96f 100755 --- a/tests/test-cow-unaligned.sh +++ b/tests/test-cow-unaligned.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-cow.sh b/tests/test-cow.sh index 104dc393..a3a15800 100755 --- a/tests/test-cow.sh +++ b/tests/test-cow.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-curl-cookie-script.c b/tests/test-curl-cookie-script.c index 45e3d136..005e73ed 100644 --- a/tests/test-curl-cookie-script.c +++ b/tests/test-curl-cookie-script.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-curl-file.sh b/tests/test-curl-file.sh index 3582ed2e..7b993334 100755 --- a/tests/test-curl-file.sh +++ b/tests/test-curl-file.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-curl-header-script-fail.script b/tests/test-curl-header-script-fail.script index 05243775..a19cc4bd 100755 --- a/tests/test-curl-header-script-fail.script +++ b/tests/test-curl-header-script-fail.script @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-curl-header-script-fail.sh b/tests/test-curl-header-script-fail.sh index 04d61326..2f307356 100755 --- a/tests/test-curl-header-script-fail.sh +++ b/tests/test-curl-header-script-fail.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-curl-header-script.c b/tests/test-curl-header-script.c index afe16591..335c9649 100644 --- a/tests/test-curl-header-script.c +++ b/tests/test-curl-header-script.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-curl.c b/tests/test-curl.c index 076b643d..ac267a17 100644 --- a/tests/test-curl.c +++ b/tests/test-curl.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-cxx-filter.cpp b/tests/test-cxx-filter.cpp index d502008f..0cc050f7 100644 --- a/tests/test-cxx-filter.cpp +++ b/tests/test-cxx-filter.cpp @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-cxx-plugin.cpp b/tests/test-cxx-plugin.cpp index 34166e3d..07a2daef 100644 --- a/tests/test-cxx-plugin.cpp +++ b/tests/test-cxx-plugin.cpp @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-cxx.sh b/tests/test-cxx.sh index 81b5477d..9046fefb 100755 --- a/tests/test-cxx.sh +++ b/tests/test-cxx.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2017-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-data-64b.sh b/tests/test-data-64b.sh index fe50a4ba..97484f31 100755 --- a/tests/test-data-64b.sh +++ b/tests/test-data-64b.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-data-7E.sh b/tests/test-data-7E.sh index 83746a2c..964fb265 100755 --- a/tests/test-data-7E.sh +++ b/tests/test-data-7E.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-data-bad.sh b/tests/test-data-bad.sh index 302f9e25..bd05311f 100755 --- a/tests/test-data-bad.sh +++ b/tests/test-data-bad.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-data-base64.sh b/tests/test-data-base64.sh index 5e7b9234..8780ff86 100755 --- a/tests/test-data-base64.sh +++ b/tests/test-data-base64.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-data-extents.sh b/tests/test-data-extents.sh index 05a49c90..77ad38cc 100755 --- a/tests/test-data-extents.sh +++ b/tests/test-data-extents.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-data-file.sh b/tests/test-data-file.sh index e2e1b405..4072de70 100755 --- a/tests/test-data-file.sh +++ b/tests/test-data-file.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-data-format.sh b/tests/test-data-format.sh index 19d03f42..8bec7649 100755 --- a/tests/test-data-format.sh +++ b/tests/test-data-format.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-data-optimum.sh b/tests/test-data-optimum.sh index 533ada6f..e1ef5051 100755 --- a/tests/test-data-optimum.sh +++ b/tests/test-data-optimum.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-data-partition.sh b/tests/test-data-partition.sh index 3ec0bf4b..99a8fdfb 100755 --- a/tests/test-data-partition.sh +++ b/tests/test-data-partition.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-data-random-slice.sh b/tests/test-data-random-slice.sh index 508d6aa3..5da887de 100755 --- a/tests/test-data-random-slice.sh +++ b/tests/test-data-random-slice.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-data-random-slice2.sh b/tests/test-data-random-slice2.sh index 2e9c85b2..8e12f856 100755 --- a/tests/test-data-random-slice2.sh +++ b/tests/test-data-random-slice2.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-data-raw-copy.sh b/tests/test-data-raw-copy.sh index a87142dd..c8125712 100755 --- a/tests/test-data-raw-copy.sh +++ b/tests/test-data-raw-copy.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-data-raw.sh b/tests/test-data-raw.sh index a8ec74e4..e428b0a8 100755 --- a/tests/test-data-raw.sh +++ b/tests/test-data-raw.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-data-reloffset.sh b/tests/test-data-reloffset.sh index 7d165c5e..2782d48c 100755 --- a/tests/test-data-reloffset.sh +++ b/tests/test-data-reloffset.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-data-sectors.sh b/tests/test-data-sectors.sh index a8054688..1189ff27 100755 --- a/tests/test-data-sectors.sh +++ b/tests/test-data-sectors.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-data-size.sh b/tests/test-data-size.sh index 1f611d32..285ba6cf 100755 --- a/tests/test-data-size.sh +++ b/tests/test-data-size.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-data.c b/tests/test-data.c index b6725734..781ffa11 100644 --- a/tests/test-data.c +++ b/tests/test-data.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-debug-flags.sh b/tests/test-debug-flags.sh index e249fb3d..51358f36 100755 --- a/tests/test-debug-flags.sh +++ b/tests/test-debug-flags.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-delay-close.sh b/tests/test-delay-close.sh index 523c2aa8..a7a0e369 100755 --- a/tests/test-delay-close.sh +++ b/tests/test-delay-close.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-delay-open.sh b/tests/test-delay-open.sh index 761917a4..a8933ce9 100755 --- a/tests/test-delay-open.sh +++ b/tests/test-delay-open.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-delay-shutdown.sh b/tests/test-delay-shutdown.sh index 586efba7..c5f7ed5b 100755 --- a/tests/test-delay-shutdown.sh +++ b/tests/test-delay-shutdown.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-delay.c b/tests/test-delay.c index b0e6f8de..fb7a7ebe 100644 --- a/tests/test-delay.c +++ b/tests/test-delay.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-disconnect-plugin.c b/tests/test-disconnect-plugin.c index c69aafbc..47a6aa15 100644 --- a/tests/test-disconnect-plugin.c +++ b/tests/test-disconnect-plugin.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2022 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-disconnect-tls.sh b/tests/test-disconnect-tls.sh index 9f757f54..1d54f95a 100755 --- a/tests/test-disconnect-tls.sh +++ b/tests/test-disconnect-tls.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-disconnect.sh b/tests/test-disconnect.sh index d7228cf5..9e2502cf 100755 --- a/tests/test-disconnect.sh +++ b/tests/test-disconnect.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-disk2data.sh b/tests/test-disk2data.sh index 683d47d6..2644b9d1 100755 --- a/tests/test-disk2data.sh +++ b/tests/test-disk2data.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-dump-config-major-1.sh b/tests/test-dump-config-major-1.sh index 2ca7deaf..3b422a01 100755 --- a/tests/test-dump-config-major-1.sh +++ b/tests/test-dump-config-major-1.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2014-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-dump-config-version-major-minor.sh b/tests/test-dump-config-version-major-minor.sh index d7fbcc3f..1004eb41 100755 --- a/tests/test-dump-config-version-major-minor.sh +++ b/tests/test-dump-config-version-major-minor.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2014-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-dump-config.sh b/tests/test-dump-config.sh index de62bf0e..ed50a476 100755 --- a/tests/test-dump-config.sh +++ b/tests/test-dump-config.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2014-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-dump-plugin-and-single.sh b/tests/test-dump-plugin-and-single.sh index 94352be7..961a7f7d 100755 --- a/tests/test-dump-plugin-and-single.sh +++ b/tests/test-dump-plugin-and-single.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2014-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-dump-plugin-example1.sh b/tests/test-dump-plugin-example1.sh index 1c9ef152..0e72e9e0 100755 --- a/tests/test-dump-plugin-example1.sh +++ b/tests/test-dump-plugin-example1.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2017-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-dump-plugin-example2.sh b/tests/test-dump-plugin-example2.sh index 7f72f9c6..62f4d316 100755 --- a/tests/test-dump-plugin-example2.sh +++ b/tests/test-dump-plugin-example2.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2017-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-dump-plugin-example4.sh b/tests/test-dump-plugin-example4.sh index 6fcaaa24..ffa72688 100755 --- a/tests/test-dump-plugin-example4.sh +++ b/tests/test-dump-plugin-example4.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2017 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-dump-plugin-name.sh b/tests/test-dump-plugin-name.sh index 583143d3..653103f7 100755 --- a/tests/test-dump-plugin-name.sh +++ b/tests/test-dump-plugin-name.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2014-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-dump-plugin-thread-model.sh b/tests/test-dump-plugin-thread-model.sh index 22d44273..c3672f06 100755 --- a/tests/test-dump-plugin-thread-model.sh +++ b/tests/test-dump-plugin-thread-model.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2014-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-dump-plugin.sh b/tests/test-dump-plugin.sh index 9251982f..e4042b71 100755 --- a/tests/test-dump-plugin.sh +++ b/tests/test-dump-plugin.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2014-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-eflags.sh b/tests/test-eflags.sh index 72484066..09f55001 100755 --- a/tests/test-eflags.sh +++ b/tests/test-eflags.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-error-triggered.sh b/tests/test-error-triggered.sh index 46f8f7b5..2a76564d 100755 --- a/tests/test-error-triggered.sh +++ b/tests/test-error-triggered.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-error0.sh b/tests/test-error0.sh index ed5fb19f..f495a92c 100755 --- a/tests/test-error0.sh +++ b/tests/test-error0.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-error10.sh b/tests/test-error10.sh index 4d148d1e..cd7ca20d 100755 --- a/tests/test-error10.sh +++ b/tests/test-error10.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-error100.sh b/tests/test-error100.sh index cdc31ac0..0fd320ca 100755 --- a/tests/test-error100.sh +++ b/tests/test-error100.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-eval-cache.sh b/tests/test-eval-cache.sh index 9df62d56..b56bba05 100755 --- a/tests/test-eval-cache.sh +++ b/tests/test-eval-cache.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-eval-disconnect.sh b/tests/test-eval-disconnect.sh index e7853f31..f3a28d7b 100755 --- a/tests/test-eval-disconnect.sh +++ b/tests/test-eval-disconnect.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-eval-dump-plugin.sh b/tests/test-eval-dump-plugin.sh index ba25efbc..314a8f82 100755 --- a/tests/test-eval-dump-plugin.sh +++ b/tests/test-eval-dump-plugin.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-eval-exports.sh b/tests/test-eval-exports.sh index 4dc5b1c9..6a21d4fd 100755 --- a/tests/test-eval-exports.sh +++ b/tests/test-eval-exports.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-eval-file.sh b/tests/test-eval-file.sh index 31b40b61..c4fe8599 100755 --- a/tests/test-eval-file.sh +++ b/tests/test-eval-file.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-eval.sh b/tests/test-eval.sh index fdb20ac8..cb205211 100755 --- a/tests/test-eval.sh +++ b/tests/test-eval.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-exit-with-parent.c b/tests/test-exit-with-parent.c index e2e2258d..3f6cc3f4 100644 --- a/tests/test-exit-with-parent.c +++ b/tests/test-exit-with-parent.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-exitlast.sh b/tests/test-exitlast.sh index 37ea0017..1e356288 100755 --- a/tests/test-exitlast.sh +++ b/tests/test-exitlast.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-exitwhen-file-already-created.sh b/tests/test-exitwhen-file-already-created.sh index 145864b5..75f94c3b 100755 --- a/tests/test-exitwhen-file-already-created.sh +++ b/tests/test-exitwhen-file-already-created.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-exitwhen-file-created-reject-new.sh b/tests/test-exitwhen-file-created-reject-new.sh index 7736e067..6c97950c 100755 --- a/tests/test-exitwhen-file-created-reject-new.sh +++ b/tests/test-exitwhen-file-created-reject-new.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-exitwhen-file-created-when-idle.sh b/tests/test-exitwhen-file-created-when-idle.sh index ff8a106b..32fd0a0d 100755 --- a/tests/test-exitwhen-file-created-when-idle.sh +++ b/tests/test-exitwhen-file-created-when-idle.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-exitwhen-file-created.sh b/tests/test-exitwhen-file-created.sh index ff62604d..62f19b7d 100755 --- a/tests/test-exitwhen-file-created.sh +++ b/tests/test-exitwhen-file-created.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-exitwhen-file-deleted.sh b/tests/test-exitwhen-file-deleted.sh index 2c0cafe2..30c66a75 100755 --- a/tests/test-exitwhen-file-deleted.sh +++ b/tests/test-exitwhen-file-deleted.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-exitwhen-pipe-closed.c b/tests/test-exitwhen-pipe-closed.c index 8fad98d0..4d30063d 100644 --- a/tests/test-exitwhen-pipe-closed.c +++ b/tests/test-exitwhen-pipe-closed.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-exitwhen-process-exits.sh b/tests/test-exitwhen-process-exits.sh index 74ba53b1..dc3027c9 100755 --- a/tests/test-exitwhen-process-exits.sh +++ b/tests/test-exitwhen-process-exits.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-exitwhen-script.sh b/tests/test-exitwhen-script.sh index 1d356f06..54b53db7 100755 --- a/tests/test-exitwhen-script.sh +++ b/tests/test-exitwhen-script.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-export-info.sh b/tests/test-export-info.sh index 0df03820..7dc28be6 100755 --- a/tests/test-export-info.sh +++ b/tests/test-export-info.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-export-name.sh b/tests/test-export-name.sh index 35910134..edb5a1af 100755 --- a/tests/test-export-name.sh +++ b/tests/test-export-name.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-exportname.sh b/tests/test-exportname.sh index 3fd87e87..63a40084 100755 --- a/tests/test-exportname.sh +++ b/tests/test-exportname.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-ext2-exportname.sh b/tests/test-ext2-exportname.sh index f062d4b2..d32f07eb 100755 --- a/tests/test-ext2-exportname.sh +++ b/tests/test-ext2-exportname.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-ext2.c b/tests/test-ext2.c index 3d1ded8a..b297c4ae 100644 --- a/tests/test-ext2.c +++ b/tests/test-ext2.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-extentlist.sh b/tests/test-extentlist.sh index 7b1dfa32..2e5aa93b 100755 --- a/tests/test-extentlist.sh +++ b/tests/test-extentlist.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2016-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-file-block.c b/tests/test-file-block.c index 901b5370..e28e2da2 100644 --- a/tests/test-file-block.c +++ b/tests/test-file-block.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-file-dir.sh b/tests/test-file-dir.sh index 09ebd858..698d88ba 100755 --- a/tests/test-file-dir.sh +++ b/tests/test-file-dir.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-file-dirfd.sh b/tests/test-file-dirfd.sh index 36bb4565..74d2d901 100755 --- a/tests/test-file-dirfd.sh +++ b/tests/test-file-dirfd.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2013-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-file-extents.sh b/tests/test-file-extents.sh index 8f6a82cc..06d6830a 100755 --- a/tests/test-file-extents.sh +++ b/tests/test-file-extents.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2023 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-file-fd.sh b/tests/test-file-fd.sh index 6c98ad9e..82eafd48 100755 --- a/tests/test-file-fd.sh +++ b/tests/test-file-fd.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2013-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-file-readonly.sh b/tests/test-file-readonly.sh index 7fff69d6..9a0bb24d 100755 --- a/tests/test-file-readonly.sh +++ b/tests/test-file-readonly.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2013-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-file.sh b/tests/test-file.sh index e054a95a..d04680dd 100755 --- a/tests/test-file.sh +++ b/tests/test-file.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2013-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-floppy.sh b/tests/test-floppy.sh index b0f49f21..33bf379d 100755 --- a/tests/test-floppy.sh +++ b/tests/test-floppy.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-flush-plugin.c b/tests/test-flush-plugin.c index 1258ebdc..f7557ea9 100644 --- a/tests/test-flush-plugin.c +++ b/tests/test-flush-plugin.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-flush.sh b/tests/test-flush.sh index e274f687..fa378d96 100755 --- a/tests/test-flush.sh +++ b/tests/test-flush.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-foreground.sh b/tests/test-foreground.sh index ac41297b..39e2e109 100755 --- a/tests/test-foreground.sh +++ b/tests/test-foreground.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2014 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-fua.sh b/tests/test-fua.sh index 21d07629..f8afa54a 100755 --- a/tests/test-fua.sh +++ b/tests/test-fua.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-full.sh b/tests/test-full.sh index a1fe0171..80b81190 100755 --- a/tests/test-full.sh +++ b/tests/test-full.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-golang.c b/tests/test-golang.c index 67eb5ed3..573b724e 100644 --- a/tests/test-golang.c +++ b/tests/test-golang.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-gzip-curl.c b/tests/test-gzip-curl.c index 49277f2f..a4133aee 100644 --- a/tests/test-gzip-curl.c +++ b/tests/test-gzip-curl.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-gzip.c b/tests/test-gzip.c index 45e558e8..028b2e88 100644 --- a/tests/test-gzip.c +++ b/tests/test-gzip.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-help-example1.sh b/tests/test-help-example1.sh index 12a046c9..b8679fe1 100755 --- a/tests/test-help-example1.sh +++ b/tests/test-help-example1.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2017-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-help-plugin.sh b/tests/test-help-plugin.sh index 636575d9..ec7886cd 100755 --- a/tests/test-help-plugin.sh +++ b/tests/test-help-plugin.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2014 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-help.sh b/tests/test-help.sh index 5fff7abf..c9678a27 100755 --- a/tests/test-help.sh +++ b/tests/test-help.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2014 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-info-address.sh b/tests/test-info-address.sh index 125e6116..a18cd180 100755 --- a/tests/test-info-address.sh +++ b/tests/test-info-address.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-info-base64.sh b/tests/test-info-base64.sh index eb722041..ecfb488e 100755 --- a/tests/test-info-base64.sh +++ b/tests/test-info-base64.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-info-conntime.sh b/tests/test-info-conntime.sh index a3a30e6e..4a0ee7a0 100755 --- a/tests/test-info-conntime.sh +++ b/tests/test-info-conntime.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-info-raw.sh b/tests/test-info-raw.sh index 5de7d678..293ff3f6 100755 --- a/tests/test-info-raw.sh +++ b/tests/test-info-raw.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-info-time.sh b/tests/test-info-time.sh index 4906acd0..1fbebab5 100755 --- a/tests/test-info-time.sh +++ b/tests/test-info-time.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-info-uptime.sh b/tests/test-info-uptime.sh index 7a2f3a32..72c70714 100755 --- a/tests/test-info-uptime.sh +++ b/tests/test-info-uptime.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-ip-filter-anyunix.sh b/tests/test-ip-filter-anyunix.sh index 299d1c5e..b17af011 100755 --- a/tests/test-ip-filter-anyunix.sh +++ b/tests/test-ip-filter-anyunix.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-ip-filter-anyvsock.sh b/tests/test-ip-filter-anyvsock.sh index 1f5e4f3d..07829930 100755 --- a/tests/test-ip-filter-anyvsock.sh +++ b/tests/test-ip-filter-anyvsock.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-ip-filter-gid.sh b/tests/test-ip-filter-gid.sh index 9b850bca..3e3af7cd 100755 --- a/tests/test-ip-filter-gid.sh +++ b/tests/test-ip-filter-gid.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-ip-filter-pid.sh b/tests/test-ip-filter-pid.sh index 72347166..c97d04de 100755 --- a/tests/test-ip-filter-pid.sh +++ b/tests/test-ip-filter-pid.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-ip-filter-uid.sh b/tests/test-ip-filter-uid.sh index 862c86a5..610297ae 100755 --- a/tests/test-ip-filter-uid.sh +++ b/tests/test-ip-filter-uid.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-ip-filter.sh b/tests/test-ip-filter.sh index b4a6c0cf..44a285f4 100755 --- a/tests/test-ip-filter.sh +++ b/tests/test-ip-filter.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2016-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-ipv4-lo.sh b/tests/test-ipv4-lo.sh index 3329ac4f..5fe8aacc 100755 --- a/tests/test-ipv4-lo.sh +++ b/tests/test-ipv4-lo.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2016-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-ipv6-lo.sh b/tests/test-ipv6-lo.sh index 5e122bf7..b40a956d 100755 --- a/tests/test-ipv6-lo.sh +++ b/tests/test-ipv6-lo.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2016-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-iso.sh b/tests/test-iso.sh index 48b0d064..e8737fd1 100755 --- a/tests/test-iso.sh +++ b/tests/test-iso.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-just-filter-header.c b/tests/test-just-filter-header.c index 5255576f..05524cde 100644 --- a/tests/test-just-filter-header.c +++ b/tests/test-just-filter-header.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-just-plugin-header.c b/tests/test-just-plugin-header.c index 4c83bac2..0cfad3e6 100644 --- a/tests/test-just-plugin-header.c +++ b/tests/test-just-plugin-header.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-lang-plugins.c b/tests/test-lang-plugins.c index cf2471fb..e29e261f 100644 --- a/tests/test-lang-plugins.c +++ b/tests/test-lang-plugins.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-layers-filter.c b/tests/test-layers-filter.c index 3c7b83fd..385727c5 100644 --- a/tests/test-layers-filter.c +++ b/tests/test-layers-filter.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-layers-plugin.c b/tests/test-layers-plugin.c index 72c99cc9..3b241495 100644 --- a/tests/test-layers-plugin.c +++ b/tests/test-layers-plugin.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-layers.c b/tests/test-layers.c index ed718325..57c7d117 100644 --- a/tests/test-layers.c +++ b/tests/test-layers.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-layers.sh b/tests/test-layers.sh index 0e3f010a..9d088deb 100755 --- a/tests/test-layers.sh +++ b/tests/test-layers.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-limit.sh b/tests/test-limit.sh index afcb0f76..5420393a 100755 --- a/tests/test-limit.sh +++ b/tests/test-limit.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-linuxdisk-copy-out.sh b/tests/test-linuxdisk-copy-out.sh index ffbb03a0..3c4bcc07 100755 --- a/tests/test-linuxdisk-copy-out.sh +++ b/tests/test-linuxdisk-copy-out.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-linuxdisk.sh b/tests/test-linuxdisk.sh index 5a360625..f16fd88e 100755 --- a/tests/test-linuxdisk.sh +++ b/tests/test-linuxdisk.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-log-error.sh b/tests/test-log-error.sh index 83f67173..ceac0f6b 100755 --- a/tests/test-log-error.sh +++ b/tests/test-log-error.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-log-extents.sh b/tests/test-log-extents.sh index a86202bb..ccef9ccd 100755 --- a/tests/test-log-extents.sh +++ b/tests/test-log-extents.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-log-script-info.sh b/tests/test-log-script-info.sh index d26b3e87..3baccb7e 100755 --- a/tests/test-log-script-info.sh +++ b/tests/test-log-script-info.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-log-script.sh b/tests/test-log-script.sh index f40a6960..21ba2979 100755 --- a/tests/test-log-script.sh +++ b/tests/test-log-script.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-log.sh b/tests/test-log.sh index 416c6ef8..f28f8f25 100755 --- a/tests/test-log.sh +++ b/tests/test-log.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-long-name.sh b/tests/test-long-name.sh index 78bf19cf..d5b573c8 100755 --- a/tests/test-long-name.sh +++ b/tests/test-long-name.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-long-options.sh b/tests/test-long-options.sh index 9e4110af..e8d75d46 100755 --- a/tests/test-long-options.sh +++ b/tests/test-long-options.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2014 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-luks-copy-zero.sh b/tests/test-luks-copy-zero.sh index d5b4ecfd..908b3319 100755 --- a/tests/test-luks-copy-zero.sh +++ b/tests/test-luks-copy-zero.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-luks-copy.sh b/tests/test-luks-copy.sh index ab9a9f14..90fafc11 100755 --- a/tests/test-luks-copy.sh +++ b/tests/test-luks-copy.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-luks-info.sh b/tests/test-luks-info.sh index 57f80c3b..27e383c9 100755 --- a/tests/test-luks-info.sh +++ b/tests/test-luks-info.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-manual.sh b/tests/test-manual.sh index 5f8c3274..ca412b37 100755 --- a/tests/test-manual.sh +++ b/tests/test-manual.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2014-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-memory-allocator-malloc-mlock.sh b/tests/test-memory-allocator-malloc-mlock.sh index 7544a4be..a769e28d 100755 --- a/tests/test-memory-allocator-malloc-mlock.sh +++ b/tests/test-memory-allocator-malloc-mlock.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-memory-allocator-malloc.sh b/tests/test-memory-allocator-malloc.sh index 385098a8..372e2eed 100755 --- a/tests/test-memory-allocator-malloc.sh +++ b/tests/test-memory-allocator-malloc.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-memory-largest-for-qemu.sh b/tests/test-memory-largest-for-qemu.sh index 0c51a2e3..a997accd 100755 --- a/tests/test-memory-largest-for-qemu.sh +++ b/tests/test-memory-largest-for-qemu.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-memory-largest.sh b/tests/test-memory-largest.sh index 4c98d69c..2f3707db 100755 --- a/tests/test-memory-largest.sh +++ b/tests/test-memory-largest.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-memory.c b/tests/test-memory.c index 351c038d..dc0941b9 100644 --- a/tests/test-memory.c +++ b/tests/test-memory.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-multi-conn-name.sh b/tests/test-multi-conn-name.sh index d49ba498..ceaf5dba 100755 --- a/tests/test-multi-conn-name.sh +++ b/tests/test-multi-conn-name.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-multi-conn-plugin.sh b/tests/test-multi-conn-plugin.sh index 5d627a07..bc62c874 100755 --- a/tests/test-multi-conn-plugin.sh +++ b/tests/test-multi-conn-plugin.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-multi-conn.sh b/tests/test-multi-conn.sh index b5a7f641..acd12989 100755 --- a/tests/test-multi-conn.sh +++ b/tests/test-multi-conn.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-nbd-block-size.sh b/tests/test-nbd-block-size.sh index f8f29935..6c2c53c9 100755 --- a/tests/test-nbd-block-size.sh +++ b/tests/test-nbd-block-size.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-nbd-client-tls.sh b/tests/test-nbd-client-tls.sh index d3304ed2..cfaa0354 100755 --- a/tests/test-nbd-client-tls.sh +++ b/tests/test-nbd-client-tls.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-nbd-client.sh b/tests/test-nbd-client.sh index e1e943bc..946ad01b 100755 --- a/tests/test-nbd-client.sh +++ b/tests/test-nbd-client.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-nbd-dynamic-content.sh b/tests/test-nbd-dynamic-content.sh index 0a1ec400..14c382ec 100755 --- a/tests/test-nbd-dynamic-content.sh +++ b/tests/test-nbd-dynamic-content.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-nbd-dynamic-list.sh b/tests/test-nbd-dynamic-list.sh index 47246a86..1310e948 100755 --- a/tests/test-nbd-dynamic-list.sh +++ b/tests/test-nbd-dynamic-list.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-nbd-extents.sh b/tests/test-nbd-extents.sh index bfd29c85..3c5a9672 100755 --- a/tests/test-nbd-extents.sh +++ b/tests/test-nbd-extents.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-nbd-qcow2.sh b/tests/test-nbd-qcow2.sh index 19acdb29..225f920a 100755 --- a/tests/test-nbd-qcow2.sh +++ b/tests/test-nbd-qcow2.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-nbd-tls-psk.sh b/tests/test-nbd-tls-psk.sh index fe8a6167..1f5aac6d 100755 --- a/tests/test-nbd-tls-psk.sh +++ b/tests/test-nbd-tls-psk.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-nbd-tls.sh b/tests/test-nbd-tls.sh index 7c8407e1..26f9bc8e 100755 --- a/tests/test-nbd-tls.sh +++ b/tests/test-nbd-tls.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-nbd-vsock.sh b/tests/test-nbd-vsock.sh index f1f839a0..d4949cac 100755 --- a/tests/test-nbd-vsock.sh +++ b/tests/test-nbd-vsock.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2016-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-nbd.c b/tests/test-nbd.c index ebc9efa3..c0c00809 100644 --- a/tests/test-nbd.c +++ b/tests/test-nbd.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-nbdkit-backend-debug.sh b/tests/test-nbdkit-backend-debug.sh index 8e4a9f0f..f3affe8a 100755 --- a/tests/test-nbdkit-backend-debug.sh +++ b/tests/test-nbdkit-backend-debug.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-newstyle.c b/tests/test-newstyle.c index 1f5d1ca3..c3be12c9 100644 --- a/tests/test-newstyle.c +++ b/tests/test-newstyle.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-nofilter.sh b/tests/test-nofilter.sh index 8bb5be57..d43e3769 100755 --- a/tests/test-nofilter.sh +++ b/tests/test-nofilter.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-not-linked-to-libssl.sh b/tests/test-not-linked-to-libssl.sh index be577634..79a8a313 100755 --- a/tests/test-not-linked-to-libssl.sh +++ b/tests/test-not-linked-to-libssl.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2017-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-nozero.sh b/tests/test-nozero.sh index 42663a17..3728df40 100755 --- a/tests/test-nozero.sh +++ b/tests/test-nozero.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-null-extents.sh b/tests/test-null-extents.sh index 02127022..f5d47cb4 100755 --- a/tests/test-null-extents.sh +++ b/tests/test-null-extents.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-null.c b/tests/test-null.c index d220999a..a77d849a 100644 --- a/tests/test-null.c +++ b/tests/test-null.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-ocaml-errorcodes.c b/tests/test-ocaml-errorcodes.c index 63cc3b11..e59f074b 100644 --- a/tests/test-ocaml-errorcodes.c +++ b/tests/test-ocaml-errorcodes.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-ocaml.c b/tests/test-ocaml.c index 9ddd1bb2..fbeda02a 100644 --- a/tests/test-ocaml.c +++ b/tests/test-ocaml.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2014 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-offset-extents.sh b/tests/test-offset-extents.sh index 5c305651..6ae6bf4e 100755 --- a/tests/test-offset-extents.sh +++ b/tests/test-offset-extents.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-offset-truncate.sh b/tests/test-offset-truncate.sh index 93d42417..b09c89e7 100755 --- a/tests/test-offset-truncate.sh +++ b/tests/test-offset-truncate.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-offset.c b/tests/test-offset.c index 1aea3bc2..c42916d6 100644 --- a/tests/test-offset.c +++ b/tests/test-offset.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-offset2.sh b/tests/test-offset2.sh index 3eb9d5dd..2a7073da 100755 --- a/tests/test-offset2.sh +++ b/tests/test-offset2.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-old-plugins.sh b/tests/test-old-plugins.sh index a02cd179..7fc95806 100755 --- a/tests/test-old-plugins.sh +++ b/tests/test-old-plugins.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-oldstyle.c b/tests/test-oldstyle.c index 0afe868f..5dbf1af4 100644 --- a/tests/test-oldstyle.c +++ b/tests/test-oldstyle.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-ondemand-list.sh b/tests/test-ondemand-list.sh index 2bd31707..5cff0cb1 100755 --- a/tests/test-ondemand-list.sh +++ b/tests/test-ondemand-list.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-ondemand-locking.sh b/tests/test-ondemand-locking.sh index 6be7e8c6..35e15cbb 100755 --- a/tests/test-ondemand-locking.sh +++ b/tests/test-ondemand-locking.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-ondemand.sh b/tests/test-ondemand.sh index efebc454..0c210ade 100755 --- a/tests/test-ondemand.sh +++ b/tests/test-ondemand.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-parallel-file.sh b/tests/test-parallel-file.sh index d9e42d81..3cbaa2d4 100755 --- a/tests/test-parallel-file.sh +++ b/tests/test-parallel-file.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2017-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-parallel-nbd.sh b/tests/test-parallel-nbd.sh index ca93fd35..ebecb6ca 100755 --- a/tests/test-parallel-nbd.sh +++ b/tests/test-parallel-nbd.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2017-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-parallel-sh.sh b/tests/test-parallel-sh.sh index 073ba51d..73f5ab51 100755 --- a/tests/test-parallel-sh.sh +++ b/tests/test-parallel-sh.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2017-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-partition1.sh b/tests/test-partition1.sh index 4daeedbe..d4d6c1be 100755 --- a/tests/test-partition1.sh +++ b/tests/test-partition1.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-partition2.sh b/tests/test-partition2.sh index e14b171c..6ad8a81e 100755 --- a/tests/test-partition2.sh +++ b/tests/test-partition2.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-partitioning1.sh b/tests/test-partitioning1.sh index e0f856ae..0ece7e13 100755 --- a/tests/test-partitioning1.sh +++ b/tests/test-partitioning1.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-partitioning2.sh b/tests/test-partitioning2.sh index 6a601869..aef7baec 100755 --- a/tests/test-partitioning2.sh +++ b/tests/test-partitioning2.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-partitioning3.sh b/tests/test-partitioning3.sh index 0afd61ee..8e13f63a 100755 --- a/tests/test-partitioning3.sh +++ b/tests/test-partitioning3.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-partitioning4.sh b/tests/test-partitioning4.sh index 00f47abd..b8975c25 100755 --- a/tests/test-partitioning4.sh +++ b/tests/test-partitioning4.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-partitioning5.sh b/tests/test-partitioning5.sh index 74bb85a0..094f4008 100755 --- a/tests/test-partitioning5.sh +++ b/tests/test-partitioning5.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-partitioning6.sh b/tests/test-partitioning6.sh index 58e14953..96d0dbb3 100755 --- a/tests/test-partitioning6.sh +++ b/tests/test-partitioning6.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-pattern-largest-for-qemu.sh b/tests/test-pattern-largest-for-qemu.sh index dd3e6ad1..c3e92b88 100755 --- a/tests/test-pattern-largest-for-qemu.sh +++ b/tests/test-pattern-largest-for-qemu.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-pattern-largest.sh b/tests/test-pattern-largest.sh index d9e6a97f..832b5841 100755 --- a/tests/test-pattern-largest.sh +++ b/tests/test-pattern-largest.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-pattern.sh b/tests/test-pattern.sh index 6bdc12e3..1b1bd56f 100755 --- a/tests/test-pattern.sh +++ b/tests/test-pattern.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-pause.c b/tests/test-pause.c index e5a970d6..8d16e347 100644 --- a/tests/test-pause.c +++ b/tests/test-pause.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-plugin-docs.sh b/tests/test-plugin-docs.sh index f3d0ab41..66661e7d 100755 --- a/tests/test-plugin-docs.sh +++ b/tests/test-plugin-docs.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2014-2023 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-probe-filter.sh b/tests/test-probe-filter.sh index 08b177ac..b889adf0 100755 --- a/tests/test-probe-filter.sh +++ b/tests/test-probe-filter.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2016-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-probe-plugin.sh b/tests/test-probe-plugin.sh index 76a36593..08846db3 100755 --- a/tests/test-probe-plugin.sh +++ b/tests/test-probe-plugin.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2016-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-protect-ranges.sh b/tests/test-protect-ranges.sh index 9a6e8cb0..61ba9d08 100755 --- a/tests/test-protect-ranges.sh +++ b/tests/test-protect-ranges.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-protect.c b/tests/test-protect.c index 98afd4fd..25b2953e 100644 --- a/tests/test-protect.c +++ b/tests/test-protect.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-python-exception.sh b/tests/test-python-exception.sh index bf15e18d..a9fb146a 100755 --- a/tests/test-python-exception.sh +++ b/tests/test-python-exception.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-python-export-list.sh b/tests/test-python-export-list.sh index 7ec9f2d4..49ca62e4 100755 --- a/tests/test-python-export-list.sh +++ b/tests/test-python-export-list.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-python-export-name.sh b/tests/test-python-export-name.sh index 1d672c56..99f292d2 100755 --- a/tests/test-python-export-name.sh +++ b/tests/test-python-export-name.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-python-plugin.py b/tests/test-python-plugin.py index d4f379fc..c3232a11 100644 --- a/tests/test-python-plugin.py +++ b/tests/test-python-plugin.py @@ -1,5 +1,5 @@ # nbdkit test plugin -# Copyright (C) 2019-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-python-thread-model.sh b/tests/test-python-thread-model.sh index faf0f933..69b3d5c7 100755 --- a/tests/test-python-thread-model.sh +++ b/tests/test-python-thread-model.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-python.sh b/tests/test-python.sh index 6a784a4f..d73ed6c1 100755 --- a/tests/test-python.sh +++ b/tests/test-python.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-random-copy.sh b/tests/test-random-copy.sh index 65e8c317..1235644d 100755 --- a/tests/test-random-copy.sh +++ b/tests/test-random-copy.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-random-sock.sh b/tests/test-random-sock.sh index 039324d4..40060d1f 100755 --- a/tests/test-random-sock.sh +++ b/tests/test-random-sock.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2014 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-random.c b/tests/test-random.c index b7716efa..4ff4601b 100644 --- a/tests/test-random.c +++ b/tests/test-random.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-rate-dynamic.sh b/tests/test-rate-dynamic.sh index e4ae4199..dc649952 100755 --- a/tests/test-rate-dynamic.sh +++ b/tests/test-rate-dynamic.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-rate.sh b/tests/test-rate.sh index be8e03a1..5e892b04 100755 --- a/tests/test-rate.sh +++ b/tests/test-rate.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-read-password-interactive.sh b/tests/test-read-password-interactive.sh index 41462b42..7af48492 100755 --- a/tests/test-read-password-interactive.sh +++ b/tests/test-read-password-interactive.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-read-password-plugin.c b/tests/test-read-password-plugin.c index 88f6221f..d8faea4e 100755 --- a/tests/test-read-password-plugin.c +++ b/tests/test-read-password-plugin.c @@ -2,7 +2,7 @@ exec nbdkit cc "$0" "$@" EXTRA_CFLAGS="-I.. -I${SRCDIR:-.}/../include" #endif /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-read-password.sh b/tests/test-read-password.sh index e4afe0a6..234162bc 100755 --- a/tests/test-read-password.sh +++ b/tests/test-read-password.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-readahead-copy.sh b/tests/test-readahead-copy.sh index b1f2b03d..dbdeacb5 100755 --- a/tests/test-readahead-copy.sh +++ b/tests/test-readahead-copy.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-readahead.sh b/tests/test-readahead.sh index 83e2cf52..3f4a3f72 100755 --- a/tests/test-readahead.sh +++ b/tests/test-readahead.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-retry-extents.sh b/tests/test-retry-extents.sh index f05823a2..7f2f3980 100755 --- a/tests/test-retry-extents.sh +++ b/tests/test-retry-extents.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-retry-open.sh b/tests/test-retry-open.sh index da602498..6180444e 100755 --- a/tests/test-retry-open.sh +++ b/tests/test-retry-open.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2023 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-retry-readonly.sh b/tests/test-retry-readonly.sh index a13d111f..5c9cf128 100755 --- a/tests/test-retry-readonly.sh +++ b/tests/test-retry-readonly.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-retry-reopen-fail.sh b/tests/test-retry-reopen-fail.sh index 9d60fb25..5f332e02 100755 --- a/tests/test-retry-reopen-fail.sh +++ b/tests/test-retry-reopen-fail.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-retry-request-mirror.c b/tests/test-retry-request-mirror.c index e7157184..276460b1 100644 --- a/tests/test-retry-request-mirror.c +++ b/tests/test-retry-request-mirror.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-retry-request-open.sh b/tests/test-retry-request-open.sh index 19fef774..f2d56f7d 100755 --- a/tests/test-retry-request-open.sh +++ b/tests/test-retry-request-open.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-retry-request.sh b/tests/test-retry-request.sh index 0d7900df..27bfbdda 100755 --- a/tests/test-retry-request.sh +++ b/tests/test-retry-request.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-retry-size.sh b/tests/test-retry-size.sh index 501258c0..47b592cd 100755 --- a/tests/test-retry-size.sh +++ b/tests/test-retry-size.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-retry-zero-flags.sh b/tests/test-retry-zero-flags.sh index 4d8c4386..30cde95d 100755 --- a/tests/test-retry-zero-flags.sh +++ b/tests/test-retry-zero-flags.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-retry.sh b/tests/test-retry.sh index 77836212..70520165 100755 --- a/tests/test-retry.sh +++ b/tests/test-retry.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-scan-copy.sh b/tests/test-scan-copy.sh index 7aa34a3c..323c9c41 100755 --- a/tests/test-scan-copy.sh +++ b/tests/test-scan-copy.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-scan-info.sh b/tests/test-scan-info.sh index d3820922..a9d7de9e 100755 --- a/tests/test-scan-info.sh +++ b/tests/test-scan-info.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-sh-errors.sh b/tests/test-sh-errors.sh index e4080f20..74a5a0ec 100755 --- a/tests/test-sh-errors.sh +++ b/tests/test-sh-errors.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-sh-extents.sh b/tests/test-sh-extents.sh index 70717217..f8a06b09 100755 --- a/tests/test-sh-extents.sh +++ b/tests/test-sh-extents.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-sh-tmpdir-leak.sh b/tests/test-sh-tmpdir-leak.sh index c1409bf8..2b1178fe 100755 --- a/tests/test-sh-tmpdir-leak.sh +++ b/tests/test-sh-tmpdir-leak.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-shebang-cc-ocaml.sh b/tests/test-shebang-cc-ocaml.sh index f833463e..41e2f3db 100755 --- a/tests/test-shebang-cc-ocaml.sh +++ b/tests/test-shebang-cc-ocaml.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-shebang-cc.sh b/tests/test-shebang-cc.sh index 5247d8e0..6ae75abe 100755 --- a/tests/test-shebang-cc.sh +++ b/tests/test-shebang-cc.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-shebang-perl.sh b/tests/test-shebang-perl.sh index 93843e95..5f35d75b 100755 --- a/tests/test-shebang-perl.sh +++ b/tests/test-shebang-perl.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2017 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-shebang-python.sh b/tests/test-shebang-python.sh index 58c283a4..fb851de9 100755 --- a/tests/test-shebang-python.sh +++ b/tests/test-shebang-python.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2017 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-shebang-ruby.sh b/tests/test-shebang-ruby.sh index 59b258b7..0e5ad64c 100755 --- a/tests/test-shebang-ruby.sh +++ b/tests/test-shebang-ruby.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2017 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-short-options.sh b/tests/test-short-options.sh index 989e1c56..2c5751b3 100755 --- a/tests/test-short-options.sh +++ b/tests/test-short-options.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2014-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-shutdown-plugin.c b/tests/test-shutdown-plugin.c index b7981a10..7061c882 100644 --- a/tests/test-shutdown-plugin.c +++ b/tests/test-shutdown-plugin.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-shutdown.sh b/tests/test-shutdown.sh index bea3ff95..e8d2a472 100755 --- a/tests/test-shutdown.sh +++ b/tests/test-shutdown.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-single-from-file.sh b/tests/test-single-from-file.sh index 485ae94b..3be3e685 100755 --- a/tests/test-single-from-file.sh +++ b/tests/test-single-from-file.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2014-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-single-sh.sh b/tests/test-single-sh.sh index 8a136cce..e67306bd 100755 --- a/tests/test-single-sh.sh +++ b/tests/test-single-sh.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-single.sh b/tests/test-single.sh index c6a6cd10..10089970 100755 --- a/tests/test-single.sh +++ b/tests/test-single.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2014 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-socket-activation.c b/tests/test-socket-activation.c index 9f847039..8e6bb30f 100644 --- a/tests/test-socket-activation.c +++ b/tests/test-socket-activation.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-sparse-random-copy.sh b/tests/test-sparse-random-copy.sh index 0487ec47..bd77c279 100755 --- a/tests/test-sparse-random-copy.sh +++ b/tests/test-sparse-random-copy.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-sparse-random-info.sh b/tests/test-sparse-random-info.sh index 54b92bb6..a98f49a1 100755 --- a/tests/test-sparse-random-info.sh +++ b/tests/test-sparse-random-info.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-split-extents.sh b/tests/test-split-extents.sh index f81ba057..0387dd13 100755 --- a/tests/test-split-extents.sh +++ b/tests/test-split-extents.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-split.c b/tests/test-split.c index 657e5b5a..0915a27b 100644 --- a/tests/test-split.c +++ b/tests/test-split.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-ssh.sh b/tests/test-ssh.sh index 6bdd53cb..03510807 100755 --- a/tests/test-ssh.sh +++ b/tests/test-ssh.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-start.sh b/tests/test-start.sh index f347d040..0e7cdd40 100755 --- a/tests/test-start.sh +++ b/tests/test-start.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2014 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-stdio-plugin.c b/tests/test-stdio-plugin.c index 93dfe46a..3a5b2309 100644 --- a/tests/test-stdio-plugin.c +++ b/tests/test-stdio-plugin.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-stdio.sh b/tests/test-stdio.sh index b0fa8d42..c55ff2ab 100755 --- a/tests/test-stdio.sh +++ b/tests/test-stdio.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-swab-16r.sh b/tests/test-swab-16r.sh index cc20b42e..c14f35e4 100755 --- a/tests/test-swab-16r.sh +++ b/tests/test-swab-16r.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-swab-16w.sh b/tests/test-swab-16w.sh index 1a74c798..dd461a1f 100755 --- a/tests/test-swab-16w.sh +++ b/tests/test-swab-16w.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-swab-32r.sh b/tests/test-swab-32r.sh index a8f7165b..000a79e0 100755 --- a/tests/test-swab-32r.sh +++ b/tests/test-swab-32r.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-swab-32w.sh b/tests/test-swab-32w.sh index 5cc69261..ccaf64fc 100755 --- a/tests/test-swab-32w.sh +++ b/tests/test-swab-32w.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-swab-64r.sh b/tests/test-swab-64r.sh index 0aa34c77..f154084f 100755 --- a/tests/test-swab-64r.sh +++ b/tests/test-swab-64r.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-swab-64w.sh b/tests/test-swab-64w.sh index 2e125426..2a908f65 100755 --- a/tests/test-swab-64w.sh +++ b/tests/test-swab-64w.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-swab-8.sh b/tests/test-swab-8.sh index f7c88bc8..873ee686 100755 --- a/tests/test-swab-8.sh +++ b/tests/test-swab-8.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-swab-extents.sh b/tests/test-swab-extents.sh index 79a3debd..f4ea9f0e 100755 --- a/tests/test-swab-extents.sh +++ b/tests/test-swab-extents.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-swap.sh b/tests/test-swap.sh index 0c8389d1..c282323b 100755 --- a/tests/test-swap.sh +++ b/tests/test-swap.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-synopsis.sh b/tests/test-synopsis.sh index dc8ef6a3..078d263b 100755 --- a/tests/test-synopsis.sh +++ b/tests/test-synopsis.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2014-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-tar-gzip-curl.c b/tests/test-tar-gzip-curl.c index 7dc95289..ec0035b8 100644 --- a/tests/test-tar-gzip-curl.c +++ b/tests/test-tar-gzip-curl.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-tar-info-xz.sh b/tests/test-tar-info-xz.sh index d1ccf1fe..1f968e9b 100755 --- a/tests/test-tar-info-xz.sh +++ b/tests/test-tar-info-xz.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2017-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-tar-info.sh b/tests/test-tar-info.sh index 2391bdb2..572768b8 100755 --- a/tests/test-tar-info.sh +++ b/tests/test-tar-info.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2017-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-tar-xz-curl.c b/tests/test-tar-xz-curl.c index fda74a9c..ff92dda2 100644 --- a/tests/test-tar-xz-curl.c +++ b/tests/test-tar-xz-curl.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-tar.sh b/tests/test-tar.sh index 3a04c142..9c9b3974 100755 --- a/tests/test-tar.sh +++ b/tests/test-tar.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2017-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-tls-fallback.sh b/tests/test-tls-fallback.sh index fe953bdc..191d97f0 100755 --- a/tests/test-tls-fallback.sh +++ b/tests/test-tls-fallback.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-tls-psk.sh b/tests/test-tls-psk.sh index 4be3b8ce..a3f64550 100755 --- a/tests/test-tls-psk.sh +++ b/tests/test-tls-psk.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-tls.sh b/tests/test-tls.sh index b850ef04..5043456b 100755 --- a/tests/test-tls.sh +++ b/tests/test-tls.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2017 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-tmpdisk-command.sh b/tests/test-tmpdisk-command.sh index cbd5141a..da0b8f9e 100755 --- a/tests/test-tmpdisk-command.sh +++ b/tests/test-tmpdisk-command.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-tmpdisk.c b/tests/test-tmpdisk.c index e96f1b82..5230c02e 100644 --- a/tests/test-tmpdisk.c +++ b/tests/test-tmpdisk.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-truncate-extents.sh b/tests/test-truncate-extents.sh index f704a80a..42dd0748 100755 --- a/tests/test-truncate-extents.sh +++ b/tests/test-truncate-extents.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-truncate1.sh b/tests/test-truncate1.sh index c2a98bd1..9616d180 100755 --- a/tests/test-truncate1.sh +++ b/tests/test-truncate1.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-truncate2.sh b/tests/test-truncate2.sh index a1a8dd64..a5c4b744 100755 --- a/tests/test-truncate2.sh +++ b/tests/test-truncate2.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-truncate3.sh b/tests/test-truncate3.sh index 4f65c6cb..6848d025 100755 --- a/tests/test-truncate3.sh +++ b/tests/test-truncate3.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-truncate4.sh b/tests/test-truncate4.sh index f3ebcddb..fc8adab3 100755 --- a/tests/test-truncate4.sh +++ b/tests/test-truncate4.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2019-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-vddk-dump-plugin.sh b/tests/test-vddk-dump-plugin.sh index ee433c21..28587973 100755 --- a/tests/test-vddk-dump-plugin.sh +++ b/tests/test-vddk-dump-plugin.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-vddk-password-fd.sh b/tests/test-vddk-password-fd.sh index 85df7983..2b251f14 100755 --- a/tests/test-vddk-password-fd.sh +++ b/tests/test-vddk-password-fd.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-vddk-password-interactive.sh b/tests/test-vddk-password-interactive.sh index 7ebfef89..21b4baf3 100755 --- a/tests/test-vddk-password-interactive.sh +++ b/tests/test-vddk-password-interactive.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-vddk-real-create.sh b/tests/test-vddk-real-create.sh index 27026382..84155e43 100755 --- a/tests/test-vddk-real-create.sh +++ b/tests/test-vddk-real-create.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2022 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-vddk-real-dump-plugin.sh b/tests/test-vddk-real-dump-plugin.sh index 95b8e5d8..817f2cea 100755 --- a/tests/test-vddk-real-dump-plugin.sh +++ b/tests/test-vddk-real-dump-plugin.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-vddk-real.sh b/tests/test-vddk-real.sh index ff0ef243..0b189665 100755 --- a/tests/test-vddk-real.sh +++ b/tests/test-vddk-real.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-vddk-reexec.sh b/tests/test-vddk-reexec.sh index d3d355dd..14cbf493 100755 --- a/tests/test-vddk-reexec.sh +++ b/tests/test-vddk-reexec.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-vddk-run.sh b/tests/test-vddk-run.sh index 462dd27a..c37ef472 100755 --- a/tests/test-vddk-run.sh +++ b/tests/test-vddk-run.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-vddk.c b/tests/test-vddk.c index 23117562..02a62d51 100644 --- a/tests/test-vddk.c +++ b/tests/test-vddk.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-version-example1.sh b/tests/test-version-example1.sh index b4e3430b..dc894ec6 100755 --- a/tests/test-version-example1.sh +++ b/tests/test-version-example1.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2017-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-version-filter.sh b/tests/test-version-filter.sh index a3515351..88d58bcb 100755 --- a/tests/test-version-filter.sh +++ b/tests/test-version-filter.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2016-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-version-plugin.sh b/tests/test-version-plugin.sh index 117107f9..fa1c3de4 100755 --- a/tests/test-version-plugin.sh +++ b/tests/test-version-plugin.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2016 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-version.sh b/tests/test-version.sh index f13227f0..bf7d7400 100755 --- a/tests/test-version.sh +++ b/tests/test-version.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2016 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-vsock.sh b/tests/test-vsock.sh index 319a1615..5c71a04a 100755 --- a/tests/test-vsock.sh +++ b/tests/test-vsock.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2016-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test-xz-curl.c b/tests/test-xz-curl.c index fd26d19d..52b37a0c 100644 --- a/tests/test-xz-curl.c +++ b/tests/test-xz-curl.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-xz.c b/tests/test-xz.c index 19d5db4f..d7b3eab4 100644 --- a/tests/test-xz.c +++ b/tests/test-xz.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test-zero.sh b/tests/test-zero.sh index 0e1053a1..6bd79f80 100755 --- a/tests/test-zero.sh +++ b/tests/test-zero.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # nbdkit -# Copyright (C) 2017-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/test.c b/tests/test.c index 0c1cbc0d..67f69fab 100644 --- a/tests/test.c +++ b/tests/test.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test.h b/tests/test.h index dd78334a..85acbd88 100644 --- a/tests/test.h +++ b/tests/test.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2013 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test_ocaml_errorcodes_plugin.ml b/tests/test_ocaml_errorcodes_plugin.ml index e2c016ff..beb28e20 100644 --- a/tests/test_ocaml_errorcodes_plugin.ml +++ b/tests/test_ocaml_errorcodes_plugin.ml @@ -1,5 +1,5 @@ (* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test_ocaml_plugin.ml b/tests/test_ocaml_plugin.ml index 6be8dcfd..8132de8f 100644 --- a/tests/test_ocaml_plugin.ml +++ b/tests/test_ocaml_plugin.ml @@ -1,5 +1,5 @@ (* nbdkit - * Copyright (C) 2013-2021 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/test_python.py b/tests/test_python.py index 199701e7..11d39271 100755 --- a/tests/test_python.py +++ b/tests/test_python.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # nbdkit -# Copyright (C) 2019-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/tests/web-server.c b/tests/web-server.c index 799b1b2c..9b37326c 100644 --- a/tests/web-server.c +++ b/tests/web-server.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/tests/web-server.h b/tests/web-server.h index b7333fcf..36f0ea1e 100644 --- a/tests/web-server.h +++ b/tests/web-server.h @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2018 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/valgrind/Makefile.am b/valgrind/Makefile.am index f9d76dcd..6f1e82f9 100644 --- a/valgrind/Makefile.am +++ b/valgrind/Makefile.am @@ -1,5 +1,5 @@ # nbdkit -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/valgrind/ext2fs.suppressions b/valgrind/ext2fs.suppressions index 1bb0128c..caee66ba 100644 --- a/valgrind/ext2fs.suppressions +++ b/valgrind/ext2fs.suppressions @@ -1,5 +1,5 @@ # ext2fs valgrind suppressions -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/valgrind/glibc.suppressions b/valgrind/glibc.suppressions index 32f792fd..c9b3e037 100644 --- a/valgrind/glibc.suppressions +++ b/valgrind/glibc.suppressions @@ -1,5 +1,5 @@ # glibc valgrind suppressions -# Copyright (C) 2016-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/valgrind/gnutls.suppressions b/valgrind/gnutls.suppressions index 139b4b70..194d2a6b 100644 --- a/valgrind/gnutls.suppressions +++ b/valgrind/gnutls.suppressions @@ -1,5 +1,5 @@ # gnutls valgrind suppressions -# Copyright (C) 2018-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/valgrind/nbdkit.suppressions b/valgrind/nbdkit.suppressions index 6e61fbaf..8eca970d 100644 --- a/valgrind/nbdkit.suppressions +++ b/valgrind/nbdkit.suppressions @@ -1,5 +1,5 @@ # nbdkit valgrind suppressions -# Copyright (C) 2016-2020 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/valgrind/ocaml.suppressions b/valgrind/ocaml.suppressions index f2245431..31a1ed0c 100644 --- a/valgrind/ocaml.suppressions +++ b/valgrind/ocaml.suppressions @@ -1,5 +1,5 @@ # OCaml valgrind suppressions -# Copyright (C) 2018-2021 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/valgrind/perl.suppressions b/valgrind/perl.suppressions index 7028ebfa..f371a855 100644 --- a/valgrind/perl.suppressions +++ b/valgrind/perl.suppressions @@ -1,5 +1,5 @@ # Perl valgrind suppressions -# Copyright (C) 2018 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/valgrind/sh.suppressions b/valgrind/sh.suppressions index bb42e2f2..ae9a4d67 100644 --- a/valgrind/sh.suppressions +++ b/valgrind/sh.suppressions @@ -1,5 +1,5 @@ # nbdkit-sh-plugin valgrind suppressions -# Copyright (C) 2019 Red Hat Inc. +# Copyright Red Hat # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are diff --git a/wrapper.c b/wrapper.c index cf1d52ae..0e699495 100644 --- a/wrapper.c +++ b/wrapper.c @@ -1,5 +1,5 @@ /* nbdkit - * Copyright (C) 2017-2020 Red Hat Inc. + * Copyright Red Hat * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are -- 2.11.4.GIT