summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <meyering@fb.com>2022-01-01 10:29:09 -0800
committerJim Meyering <meyering@fb.com>2022-01-01 10:29:09 -0800
commitf9290127f38ae0c6131f4493e06be18653f7f83f (patch)
tree729556c2b77fc0735e092e45cfa8dd1793592b50 /src
parent1843c0b0c88520feff81897d96037e2d69e15d92 (diff)
downloadgrep-f9290127f38ae0c6131f4493e06be18653f7f83f.tar.gz
maint: make update-copyright
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am2
-rw-r--r--src/dfasearch.c2
-rw-r--r--src/die.h2
-rw-r--r--src/grep.c2
-rw-r--r--src/grep.h2
-rw-r--r--src/kwsearch.c2
-rw-r--r--src/kwset.c2
-rw-r--r--src/kwset.h2
-rw-r--r--src/pcresearch.c2
-rw-r--r--src/search.h2
-rw-r--r--src/searchutils.c2
-rw-r--r--src/system.h2
12 files changed, 12 insertions, 12 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index db1bb3f6..52743afe 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,5 +1,5 @@
## Process this file with automake to create Makefile.in
-# Copyright 1997-1998, 2005-2021 Free Software Foundation, Inc.
+# Copyright 1997-1998, 2005-2022 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/src/dfasearch.c b/src/dfasearch.c
index 16758655..744b8f81 100644
--- a/src/dfasearch.c
+++ b/src/dfasearch.c
@@ -1,5 +1,5 @@
/* dfasearch.c - searching subroutines using dfa and regex for grep.
- Copyright 1992, 1998, 2000, 2007, 2009-2021 Free Software Foundation, Inc.
+ Copyright 1992, 1998, 2000, 2007, 2009-2022 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/die.h b/src/die.h
index cc47c5a1..4197f0f0 100644
--- a/src/die.h
+++ b/src/die.h
@@ -1,5 +1,5 @@
/* Report an error and exit.
- Copyright 2016-2021 Free Software Foundation, Inc.
+ Copyright 2016-2022 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/grep.c b/src/grep.c
index 19dff43e..6ff852ad 100644
--- a/src/grep.c
+++ b/src/grep.c
@@ -1,5 +1,5 @@
/* grep.c - main driver file for grep.
- Copyright (C) 1992, 1997-2002, 2004-2021 Free Software Foundation, Inc.
+ Copyright (C) 1992, 1997-2002, 2004-2022 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/grep.h b/src/grep.h
index 04c15dd5..fdafdc60 100644
--- a/src/grep.h
+++ b/src/grep.h
@@ -1,5 +1,5 @@
/* grep.h - interface to grep driver for searching subroutines.
- Copyright (C) 1992, 1998, 2001, 2007, 2009-2021 Free Software Foundation,
+ Copyright (C) 1992, 1998, 2001, 2007, 2009-2022 Free Software Foundation,
Inc.
This program is free software; you can redistribute it and/or modify
diff --git a/src/kwsearch.c b/src/kwsearch.c
index 171db9ac..f6517170 100644
--- a/src/kwsearch.c
+++ b/src/kwsearch.c
@@ -1,5 +1,5 @@
/* kwsearch.c - searching subroutines using kwset for grep.
- Copyright 1992, 1998, 2000, 2007, 2009-2021 Free Software Foundation, Inc.
+ Copyright 1992, 1998, 2000, 2007, 2009-2022 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/kwset.c b/src/kwset.c
index 329b802f..fc25a94e 100644
--- a/src/kwset.c
+++ b/src/kwset.c
@@ -1,5 +1,5 @@
/* kwset.c - search for any of a set of keywords.
- Copyright (C) 1989, 1998, 2000, 2005, 2007, 2009-2021 Free Software
+ Copyright (C) 1989, 1998, 2000, 2005, 2007, 2009-2022 Free Software
Foundation, Inc.
This program is free software; you can redistribute it and/or modify
diff --git a/src/kwset.h b/src/kwset.h
index cb94cf4b..3c2f0142 100644
--- a/src/kwset.h
+++ b/src/kwset.h
@@ -1,5 +1,5 @@
/* kwset.h - header declaring the keyword set library.
- Copyright (C) 1989, 1998, 2005, 2007, 2009-2021 Free Software Foundation,
+ Copyright (C) 1989, 1998, 2005, 2007, 2009-2022 Free Software Foundation,
Inc.
This program is free software; you can redistribute it and/or modify
diff --git a/src/pcresearch.c b/src/pcresearch.c
index c12c6740..f332a44f 100644
--- a/src/pcresearch.c
+++ b/src/pcresearch.c
@@ -1,5 +1,5 @@
/* pcresearch.c - searching subroutines using PCRE for grep.
- Copyright 2000, 2007, 2009-2021 Free Software Foundation, Inc.
+ Copyright 2000, 2007, 2009-2022 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/search.h b/src/search.h
index acc282c4..1f548d94 100644
--- a/src/search.h
+++ b/src/search.h
@@ -1,5 +1,5 @@
/* search.c - searching subroutines using dfa, kwset and regex for grep.
- Copyright 1992, 1998, 2000, 2007, 2009-2021 Free Software Foundation, Inc.
+ Copyright 1992, 1998, 2000, 2007, 2009-2022 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/searchutils.c b/src/searchutils.c
index ebc4a115..ed621807 100644
--- a/src/searchutils.c
+++ b/src/searchutils.c
@@ -1,5 +1,5 @@
/* searchutils.c - helper subroutines for grep's matchers.
- Copyright 1992, 1998, 2000, 2007, 2009-2021 Free Software Foundation, Inc.
+ Copyright 1992, 1998, 2000, 2007, 2009-2022 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/src/system.h b/src/system.h
index 40f4d558..80257737 100644
--- a/src/system.h
+++ b/src/system.h
@@ -1,5 +1,5 @@
/* Portability cruft. Include after config.h and sys/types.h.
- Copyright 1996, 1998-2000, 2007, 2009-2021 Free Software Foundation, Inc.
+ Copyright 1996, 1998-2000, 2007, 2009-2022 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by