summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <Todd.Miller@courtesan.com>2010-06-14 12:19:49 -0400
committerTodd C. Miller <Todd.Miller@courtesan.com>2010-06-14 12:19:49 -0400
commit512550747217dcfa6eac068a4dfe0e7724c2c8f9 (patch)
treefe651dedb8c4db2c1ff8b9220135b82ea11c1c3c
parent4e0101331055e9a03cf41eb76d1e8c79ff2d1064 (diff)
downloadsudo-512550747217dcfa6eac068a4dfe0e7724c2c8f9.tar.gz
Update copyright year
-rw-r--r--common/alloc.c2
-rw-r--r--common/fileops.c3
-rw-r--r--common/gettime.c3
-rw-r--r--common/list.c2
-rw-r--r--common/zero_bytes.c3
-rw-r--r--compat/charclass.h2
-rw-r--r--compat/closefrom.c2
-rw-r--r--compat/fnmatch.c2
-rw-r--r--compat/glob.c2
-rw-r--r--compat/isblank.c2
-rw-r--r--compat/memrchr.c2
-rw-r--r--compat/mkstemp.c3
-rw-r--r--compat/nanosleep.c2
-rw-r--r--compat/snprintf.c3
-rw-r--r--compat/strcasecmp.c3
-rw-r--r--compat/strerror.c3
-rw-r--r--compat/strlcat.c3
-rw-r--r--compat/strlcpy.c3
-rw-r--r--compat/timespec.h2
-rw-r--r--compat/utime.h3
-rw-r--r--compat/utimes.c3
-rw-r--r--doc/HISTORY4
-rw-r--r--doc/history.pod3
-rw-r--r--doc/license.pod33
-rw-r--r--include/alloc.h2
-rw-r--r--include/error.h2
-rw-r--r--include/lbuf.h2
-rw-r--r--include/list.h2
-rw-r--r--include/missing.h2
-rw-r--r--pathnames.h.in2
-rw-r--r--plugins/sudoers/alias.c2
-rw-r--r--plugins/sudoers/audit.c2
-rw-r--r--plugins/sudoers/auth/sudo_auth.h2
-rw-r--r--plugins/sudoers/boottime.c2
-rw-r--r--plugins/sudoers/bsm_audit.c1
-rw-r--r--plugins/sudoers/bsm_audit.h1
-rw-r--r--plugins/sudoers/defaults.c2
-rw-r--r--plugins/sudoers/defaults.h2
-rw-r--r--plugins/sudoers/find_path.c3
-rw-r--r--plugins/sudoers/getspwuid.c3
-rw-r--r--plugins/sudoers/goodpath.c3
-rw-r--r--plugins/sudoers/gram.y2
-rw-r--r--plugins/sudoers/interfaces.c2
-rw-r--r--plugins/sudoers/interfaces.h2
-rw-r--r--plugins/sudoers/logging.c2
-rw-r--r--plugins/sudoers/logging.h2
-rw-r--r--plugins/sudoers/match.c2
-rw-r--r--plugins/sudoers/parse.h2
-rw-r--r--plugins/sudoers/plugin_error.c2
-rw-r--r--plugins/sudoers/pwutil.c2
-rw-r--r--plugins/sudoers/redblack.c3
-rw-r--r--plugins/sudoers/redblack.h2
-rw-r--r--plugins/sudoers/sudo_nss.h2
-rw-r--r--plugins/sudoers/sudoers.h2
-rw-r--r--plugins/sudoers/sudoreplay.c2
-rw-r--r--plugins/sudoers/testsudoers.c2
-rw-r--r--plugins/sudoers/timestr.c2
-rw-r--r--plugins/sudoers/toke.l2
-rw-r--r--plugins/sudoers/visudo.c2
-rw-r--r--src/aix.c2
-rw-r--r--src/conversation.c2
-rw-r--r--src/error.c2
-rw-r--r--src/load_plugins.c2
-rw-r--r--src/parse_args.c2
-rw-r--r--src/sesh.c2
-rw-r--r--src/sudo.h2
-rw-r--r--src/sudo_noexec.c2
-rw-r--r--src/sudo_plugin_int.h16
-rw-r--r--src/sudo_usage.h.in2
-rw-r--r--src/tgetpass.c2
70 files changed, 133 insertions, 68 deletions
diff --git a/common/alloc.c b/common/alloc.c
index e0846d40b..f488572e7 100644
--- a/common/alloc.c
+++ b/common/alloc.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1999-2005, 2007
+ * Copyright (c) 1999-2005, 2007, 2010
* Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/common/fileops.c b/common/fileops.c
index b7d7411b1..f140dfa6a 100644
--- a/common/fileops.c
+++ b/common/fileops.c
@@ -1,5 +1,6 @@
/*
- * Copyright (c) 1999-2005,2007,2009 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 1999-2005, 2007, 2009, 2010
+ * Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/common/gettime.c b/common/gettime.c
index 561607770..903c4b360 100644
--- a/common/gettime.c
+++ b/common/gettime.c
@@ -1,5 +1,6 @@
/*
- * Copyright (c) 2004-2005, 2008 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2004-2005, 2008, 2010
+ * Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/common/list.c b/common/list.c
index f077291ac..3a8341af4 100644
--- a/common/list.c
+++ b/common/list.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007-2008 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2007-2008, 2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/common/zero_bytes.c b/common/zero_bytes.c
index de14ece39..03d2b8c5c 100644
--- a/common/zero_bytes.c
+++ b/common/zero_bytes.c
@@ -1,5 +1,6 @@
/*
- * Copyright (c) 2003-2005, 2007 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2003-2005, 2007, 2010
+ * Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/compat/charclass.h b/compat/charclass.h
index 950443fd1..4fcf15eac 100644
--- a/compat/charclass.h
+++ b/compat/charclass.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2008, 2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/compat/closefrom.c b/compat/closefrom.c
index de56c2ac5..1f00e1231 100644
--- a/compat/closefrom.c
+++ b/compat/closefrom.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004-2005, 2007
+ * Copyright (c) 2004-2005, 2007, 2010
* Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/compat/fnmatch.c b/compat/fnmatch.c
index 4fa0bbda1..defac9211 100644
--- a/compat/fnmatch.c
+++ b/compat/fnmatch.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2008, 2010 Todd C. Miller <Todd.Miller@courtesan.com>
* Copyright (c) 1989, 1993, 1994
* The Regents of the University of California. All rights reserved.
*
diff --git a/compat/glob.c b/compat/glob.c
index 342f0b2ce..2c94c5cf9 100644
--- a/compat/glob.c
+++ b/compat/glob.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008-2009 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2008-2010 Todd C. Miller <Todd.Miller@courtesan.com>
* Copyright (c) 1989, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/compat/isblank.c b/compat/isblank.c
index 2afcda9a8..42ab126c4 100644
--- a/compat/isblank.c
+++ b/compat/isblank.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2008, 2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/compat/memrchr.c b/compat/memrchr.c
index 88198d124..d2dd1e684 100644
--- a/compat/memrchr.c
+++ b/compat/memrchr.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2007, 2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/compat/mkstemp.c b/compat/mkstemp.c
index 5f31f3625..03ac736d0 100644
--- a/compat/mkstemp.c
+++ b/compat/mkstemp.c
@@ -1,5 +1,6 @@
/*
- * Copyright (c) 2001, 2003, 2008 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2001, 2003, 2008, 2010
+ * Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/compat/nanosleep.c b/compat/nanosleep.c
index 16114395b..bc0ecb70b 100644
--- a/compat/nanosleep.c
+++ b/compat/nanosleep.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2009 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2009-2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/compat/snprintf.c b/compat/snprintf.c
index 5c251f76e..bd48c93e0 100644
--- a/compat/snprintf.c
+++ b/compat/snprintf.c
@@ -1,5 +1,6 @@
/*
- * Copyright (c) 1999-2005, 2008 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 1999-2005, 2008, 2010
+ * Todd C. Miller <Todd.Miller@courtesan.com>
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/compat/strcasecmp.c b/compat/strcasecmp.c
index af89c33db..6e17a3c23 100644
--- a/compat/strcasecmp.c
+++ b/compat/strcasecmp.c
@@ -1,5 +1,6 @@
/*
- * Copyright (c) 2004-2005 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2004-2005, 2010
+ * Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/compat/strerror.c b/compat/strerror.c
index 84378df76..5b444e47f 100644
--- a/compat/strerror.c
+++ b/compat/strerror.c
@@ -1,5 +1,6 @@
/*
- * Copyright (c) 1999-2005 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 1999-2005, 2010
+ * Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/compat/strlcat.c b/compat/strlcat.c
index c91c31257..092e5cc65 100644
--- a/compat/strlcat.c
+++ b/compat/strlcat.c
@@ -1,7 +1,8 @@
/* $OpenBSD: strlcat.c,v 1.8 2001/05/13 15:40:15 deraadt Exp $ */
/*
- * Copyright (c) 1998, 2003-2005 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 1998, 2003-2005, 2010
+ * Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/compat/strlcpy.c b/compat/strlcpy.c
index 18de274eb..0d5d78994 100644
--- a/compat/strlcpy.c
+++ b/compat/strlcpy.c
@@ -1,7 +1,8 @@
/* $OpenBSD: strlcpy.c,v 1.5 2001/05/13 15:40:16 deraadt Exp $ */
/*
- * Copyright (c) 1998, 2003-2005 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 1998, 2003-2005, 2010
+ * Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/compat/timespec.h b/compat/timespec.h
index 681c5239a..4c9dedc8e 100644
--- a/compat/timespec.h
+++ b/compat/timespec.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2005 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2005, 2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/compat/utime.h b/compat/utime.h
index 48942b3df..0a1eb86d5 100644
--- a/compat/utime.h
+++ b/compat/utime.h
@@ -1,5 +1,6 @@
/*
- * Copyright (c) 1996, 1998-2005 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 1996, 1998-2005, 2010
+ * Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/compat/utimes.c b/compat/utimes.c
index 33f865aa8..b727764e5 100644
--- a/compat/utimes.c
+++ b/compat/utimes.c
@@ -1,5 +1,6 @@
/*
- * Copyright (c) 2004-2005, 2007 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2004-2005, 2007, 2010
+ * Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/doc/HISTORY b/doc/HISTORY
index d7a881b0c..e237ad3df 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -41,8 +41,8 @@ had been added in the past ten years. This new parser removes some
limitations of the previous one, removes ordering constraints and adds
support for including multiple sudoers files.
-in 2010, Quest Software began sponsoring Sudo development by hiring
-Todd to work on Sudo as part of his full-time job.
+In 2010, Quest Software began sponsoring Sudo development by hiring Todd to
+work on Sudo as part of his full-time job.
sudo, in its current form, is maintained by:
diff --git a/doc/history.pod b/doc/history.pod
index 21509470c..7fb490cc7 100644
--- a/doc/history.pod
+++ b/doc/history.pod
@@ -47,6 +47,9 @@ features that had been added in the past ten years. This new parser
removes some limitations of the previous one, removes ordering
constraints and adds support for including multiple sudoers files.
+In 2010, Quest Software began sponsoring Sudo development by hiring
+Todd to work on Sudo as part of his full-time job.
+
sudo, in its current form, is maintained by:
Todd Miller <Todd.Miller@courtesan.com>
diff --git a/doc/license.pod b/doc/license.pod
index bd738b086..e2d52564f 100644
--- a/doc/license.pod
+++ b/doc/license.pod
@@ -23,8 +23,8 @@ Sudo is distributed under the following ISC-style license:
Materiel Command, USAF, under agreement number F39502-99-1-0512.
=head3
-Additionally, fnmatch.c, fnmatch.h, getcwd.c, glob.c, glob.h, mkstemp.c
-and snprintf.c bear the following UCB license:
+Additionally, fnmatch.c, fnmatch.h, getcwd.c, glob.c, glob.h and snprintf.c
+bear the following UCB license:
Copyright (c) 1987, 1989, 1990, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
@@ -52,3 +52,32 @@ and snprintf.c bear the following UCB license:
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
+
+=head3
+nonunix.h and vasgroups.c bear the following license:
+
+ Copyright (c) 2006 Quest Software, Inc. All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ 3. Neither the name of Quest Software, Inc. nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
diff --git a/include/alloc.h b/include/alloc.h
index 84fd8dd82..912654edc 100644
--- a/include/alloc.h
+++ b/include/alloc.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2009 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2009-2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/include/error.h b/include/error.h
index 563aeb81f..190bd260b 100644
--- a/include/error.h
+++ b/include/error.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2004, 2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/include/lbuf.h b/include/lbuf.h
index 1a8e6dfda..501eeafc0 100644
--- a/include/lbuf.h
+++ b/include/lbuf.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2007, 2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/include/list.h b/include/list.h
index 116e8777a..1055e227a 100644
--- a/include/list.h
+++ b/include/list.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2007, 2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/include/missing.h b/include/missing.h
index c7056b551..ddd94957e 100644
--- a/include/missing.h
+++ b/include/missing.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2009 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2009-2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/pathnames.h.in b/pathnames.h.in
index 88ba6abfa..d6eb6e466 100644
--- a/pathnames.h.in
+++ b/pathnames.h.in
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 1998, 1999, 2001, 2004, 2005, 2007-2009
+ * Copyright (c) 1996, 1998, 1999, 2001, 2004, 2005, 2007-2010
* Todd C. Miller <Todd.Miller@courtesan.com>.
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/plugins/sudoers/alias.c b/plugins/sudoers/alias.c
index d79ee1439..6949a76c8 100644
--- a/plugins/sudoers/alias.c
+++ b/plugins/sudoers/alias.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004-2005m, 2007-2009
+ * Copyright (c) 2004-2005m, 2007-2010
* Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/plugins/sudoers/audit.c b/plugins/sudoers/audit.c
index 9356e25b5..47b03e414 100644
--- a/plugins/sudoers/audit.c
+++ b/plugins/sudoers/audit.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2009 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2009-2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/plugins/sudoers/auth/sudo_auth.h b/plugins/sudoers/auth/sudo_auth.h
index a2034ea2a..565864a58 100644
--- a/plugins/sudoers/auth/sudo_auth.h
+++ b/plugins/sudoers/auth/sudo_auth.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1999-2005, 2007-2009 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 1999-2005, 2007-2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/plugins/sudoers/boottime.c b/plugins/sudoers/boottime.c
index 6921d64db..bc6596db1 100644
--- a/plugins/sudoers/boottime.c
+++ b/plugins/sudoers/boottime.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2009 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2009-2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/plugins/sudoers/bsm_audit.c b/plugins/sudoers/bsm_audit.c
index 054d621b3..f856f574f 100644
--- a/plugins/sudoers/bsm_audit.c
+++ b/plugins/sudoers/bsm_audit.c
@@ -1,4 +1,5 @@
/*
+ * Copyright (c) 2009-2010 Todd C. Miller <Todd.Miller@courtesan.com>
* Copyright (c) 2009 Christian S.J. Peron
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/plugins/sudoers/bsm_audit.h b/plugins/sudoers/bsm_audit.h
index 6ccb79db2..bd2976409 100644
--- a/plugins/sudoers/bsm_audit.h
+++ b/plugins/sudoers/bsm_audit.h
@@ -1,4 +1,5 @@
/*
+ * Copyright (c) 2009-2010 Todd C. Miller <Todd.Miller@courtesan.com>
* Copyright (c) 2009 Christian S.J. Peron
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/plugins/sudoers/defaults.c b/plugins/sudoers/defaults.c
index fde60deb3..fa69cf086 100644
--- a/plugins/sudoers/defaults.c
+++ b/plugins/sudoers/defaults.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1999-2005, 2007-2008
+ * Copyright (c) 1999-2005, 2007-2010
* Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/plugins/sudoers/defaults.h b/plugins/sudoers/defaults.h
index 9670e9897..a269d0205 100644
--- a/plugins/sudoers/defaults.h
+++ b/plugins/sudoers/defaults.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1999-2005, 2008
+ * Copyright (c) 1999-2005, 2008-2010
* Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/plugins/sudoers/find_path.c b/plugins/sudoers/find_path.c
index 85f33b876..c5aecb449 100644
--- a/plugins/sudoers/find_path.c
+++ b/plugins/sudoers/find_path.c
@@ -1,5 +1,6 @@
/*
- * Copyright (c) 1996, 1998-2005 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 1996, 1998-2005, 2010
+ * Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/plugins/sudoers/getspwuid.c b/plugins/sudoers/getspwuid.c
index 7113780b3..8a4fccc2b 100644
--- a/plugins/sudoers/getspwuid.c
+++ b/plugins/sudoers/getspwuid.c
@@ -1,5 +1,6 @@
/*
- * Copyright (c) 1996, 1998-2005 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 1996, 1998-2005, 2010
+ * Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/plugins/sudoers/goodpath.c b/plugins/sudoers/goodpath.c
index e362ff411..ead484efb 100644
--- a/plugins/sudoers/goodpath.c
+++ b/plugins/sudoers/goodpath.c
@@ -1,5 +1,6 @@
/*
- * Copyright (c) 1996, 1998-2005 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 1996, 1998-2005, 2010
+ * Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/plugins/sudoers/gram.y b/plugins/sudoers/gram.y
index 0e55a7113..1426860fa 100644
--- a/plugins/sudoers/gram.y
+++ b/plugins/sudoers/gram.y
@@ -1,6 +1,6 @@
%{
/*
- * Copyright (c) 1996, 1998-2005, 2007-2009
+ * Copyright (c) 1996, 1998-2005, 2007-2010
* Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/plugins/sudoers/interfaces.c b/plugins/sudoers/interfaces.c
index ebfbfb936..00a15dc7f 100644
--- a/plugins/sudoers/interfaces.c
+++ b/plugins/sudoers/interfaces.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 1998-2005, 2007-2009
+ * Copyright (c) 1996, 1998-2005, 2007-2010
* Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/plugins/sudoers/interfaces.h b/plugins/sudoers/interfaces.h
index b10cad392..7a652bed9 100644
--- a/plugins/sudoers/interfaces.h
+++ b/plugins/sudoers/interfaces.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 1998-2005, 2007
+ * Copyright (c) 1996, 1998-2005, 2007, 2010
* Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/plugins/sudoers/logging.c b/plugins/sudoers/logging.c
index bf9077e62..92a20c9e9 100644
--- a/plugins/sudoers/logging.c
+++ b/plugins/sudoers/logging.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1994-1996, 1998-2009 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 1994-1996, 1998-2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/plugins/sudoers/logging.h b/plugins/sudoers/logging.h
index 90166ced1..591da3259 100644
--- a/plugins/sudoers/logging.h
+++ b/plugins/sudoers/logging.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1999-2005, 2009
+ * Copyright (c) 1999-2005, 2009-2010
* Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/plugins/sudoers/match.c b/plugins/sudoers/match.c
index 54e85200c..0b1be1920 100644
--- a/plugins/sudoers/match.c
+++ b/plugins/sudoers/match.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 1998-2005, 2007-2009
+ * Copyright (c) 1996, 1998-2005, 2007-2010
* Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/plugins/sudoers/parse.h b/plugins/sudoers/parse.h
index ee250daee..fac105910 100644
--- a/plugins/sudoers/parse.h
+++ b/plugins/sudoers/parse.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 1998-2000, 2004, 2007-2009
+ * Copyright (c) 1996, 1998-2000, 2004, 2007-2010
* Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/plugins/sudoers/plugin_error.c b/plugins/sudoers/plugin_error.c
index c12c247ac..365c51c07 100644
--- a/plugins/sudoers/plugin_error.c
+++ b/plugins/sudoers/plugin_error.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004-2005 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2004-2005, 2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/plugins/sudoers/pwutil.c b/plugins/sudoers/pwutil.c
index 98555acce..16f53ae3e 100644
--- a/plugins/sudoers/pwutil.c
+++ b/plugins/sudoers/pwutil.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 1998-2005, 2007-2009
+ * Copyright (c) 1996, 1998-2005, 2007-2010
* Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/plugins/sudoers/redblack.c b/plugins/sudoers/redblack.c
index 2ae961789..1ccc4edcc 100644
--- a/plugins/sudoers/redblack.c
+++ b/plugins/sudoers/redblack.c
@@ -1,5 +1,6 @@
/*
- * Copyright (c) 2004-2005, 2007,2009 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2004-2005, 2007,2009,2010
+ * Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/plugins/sudoers/redblack.h b/plugins/sudoers/redblack.h
index 0a1127b58..eab5e8f26 100644
--- a/plugins/sudoers/redblack.h
+++ b/plugins/sudoers/redblack.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004, 2007 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2004, 2007, 2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/plugins/sudoers/sudo_nss.h b/plugins/sudoers/sudo_nss.h
index 4bf029698..b7cd2c472 100644
--- a/plugins/sudoers/sudo_nss.h
+++ b/plugins/sudoers/sudo_nss.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007-2009 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2007-2010
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/plugins/sudoers/sudoers.h b/plugins/sudoers/sudoers.h
index 702a1773c..472e3de53 100644
--- a/plugins/sudoers/sudoers.h
+++ b/plugins/sudoers/sudoers.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1993-1996, 1998-2005, 2007-2009
+ * Copyright (c) 1993-1996, 1998-2005, 2007-2010
* Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/plugins/sudoers/sudoreplay.c b/plugins/sudoers/sudoreplay.c
index bfa76e910..acce39a68 100644
--- a/plugins/sudoers/sudoreplay.c
+++ b/plugins/sudoers/sudoreplay.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2009 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2009-2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/plugins/sudoers/testsudoers.c b/plugins/sudoers/testsudoers.c
index b41ba6a42..cd5e159f5 100644
--- a/plugins/sudoers/testsudoers.c
+++ b/plugins/sudoers/testsudoers.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 1998-2005, 2007-2009
+ * Copyright (c) 1996, 1998-2005, 2007-2010
* Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/plugins/sudoers/timestr.c b/plugins/sudoers/timestr.c
index 28317bfeb..740dccdf4 100644
--- a/plugins/sudoers/timestr.c
+++ b/plugins/sudoers/timestr.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1999, 2009 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 1999, 2009, 2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/plugins/sudoers/toke.l b/plugins/sudoers/toke.l
index 90a98c32e..3b7649de2 100644
--- a/plugins/sudoers/toke.l
+++ b/plugins/sudoers/toke.l
@@ -1,6 +1,6 @@
%{
/*
- * Copyright (c) 1996, 1998-2005, 2007-2009
+ * Copyright (c) 1996, 1998-2005, 2007-2010
* Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/plugins/sudoers/visudo.c b/plugins/sudoers/visudo.c
index f6b23dc7c..40f39d62a 100644
--- a/plugins/sudoers/visudo.c
+++ b/plugins/sudoers/visudo.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 1998-2005, 2007-2009
+ * Copyright (c) 1996, 1998-2005, 2007-2010
* Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/src/aix.c b/src/aix.c
index f7ea50a8c..5df51f33b 100644
--- a/src/aix.c
+++ b/src/aix.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2008, 2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/src/conversation.c b/src/conversation.c
index db55fe9a0..571ff72df 100644
--- a/src/conversation.c
+++ b/src/conversation.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1999-2005, 2007-2009 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 1999-2005, 2007-2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/src/error.c b/src/error.c
index e6963af0a..77ed00e1e 100644
--- a/src/error.c
+++ b/src/error.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004-2005 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2004-2005, 2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/src/load_plugins.c b/src/load_plugins.c
index 971ef92b6..d33134ac0 100644
--- a/src/load_plugins.c
+++ b/src/load_plugins.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2009 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2009-2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/src/parse_args.c b/src/parse_args.c
index 18b3ef8cc..5948aef58 100644
--- a/src/parse_args.c
+++ b/src/parse_args.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1993-1996, 1998-2009 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 1993-1996, 1998-2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/src/sesh.c b/src/sesh.c
index a288cdb73..0770c5ce2 100644
--- a/src/sesh.c
+++ b/src/sesh.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2008, 2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/src/sudo.h b/src/sudo.h
index 01c5138c4..1fdc42611 100644
--- a/src/sudo.h
+++ b/src/sudo.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1993-1996, 1998-2005, 2007-2009
+ * Copyright (c) 1993-1996, 1998-2005, 2007-2010
* Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
diff --git a/src/sudo_noexec.c b/src/sudo_noexec.c
index fd2c0a771..27677cab5 100644
--- a/src/sudo_noexec.c
+++ b/src/sudo_noexec.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004-2005 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2004-2005, 2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/src/sudo_plugin_int.h b/src/sudo_plugin_int.h
index 86c3489c3..d67f53345 100644
--- a/src/sudo_plugin_int.h
+++ b/src/sudo_plugin_int.h
@@ -1,3 +1,19 @@
+/*
+ * Copyright (c) 2010 Todd C. Miller <Todd.Miller@courtesan.com>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
#ifndef _SUDO_PLUGIN_INT_H
#define _SUDO_PLUGIN_INT_H
diff --git a/src/sudo_usage.h.in b/src/sudo_usage.h.in
index 49d07e766..4f6288b30 100644
--- a/src/sudo_usage.h.in
+++ b/src/sudo_usage.h.in
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007-2009 Todd C. Miller <Todd.Miller@courtesan.com>
+ * Copyright (c) 2007-2010 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/src/tgetpass.c b/src/tgetpass.c
index 8fd965da7..dfd2a742d 100644
--- a/src/tgetpass.c
+++ b/src/tgetpass.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 1998-2005, 2007-2009
+ * Copyright (c) 1996, 1998-2005, 2007-2010
* Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any