From: Todd C. Miller Date: Sat, 27 Nov 1993 23:42:49 +0000 (+0000) Subject: updated version number and took out jeff's email (since it is invalid) X-Git-Tag: SUDO_1_3_0~79 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=594284b224de00e637b06b619fbd94ea12ab245e;p=sudo updated version number and took out jeff's email (since it is invalid) --- diff --git a/check.c b/check.c index e6a208f77..552ca5ae7 100644 --- a/check.c +++ b/check.c @@ -1,3 +1,12 @@ +/* + * CU sudo version 1.3 (based on Root Group sudo version 1.1) + * + * This software comes with no waranty whatsoever, use at your own risk. + * + * Please send bugs, changes, problems to sudo-bugs.cs.colorado.edu + * + */ + /* * sudo version 1.1 allows users to execute commands as root * Copyright (C) 1991 The Root Group, Inc. @@ -16,12 +25,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * - * If you make modifications to the source, we would be happy to have - * them to include in future releases. Feel free to send them to: - * Jeff Nieusma nieusma@rootgroup.com - * 3959 Arbol CT (303) 447-8093 - * Boulder, CO 80301-1752 - * ******************************************************************* * * check.c @@ -32,6 +35,10 @@ * Jeff Nieusma Thu Mar 21 22:39:07 MST 1991 */ +#ifndef lint +static char rcsid[] = "$Id$"; +#endif /* lint */ + #include #include #include diff --git a/find_path.c b/find_path.c index ec8a4e6e2..d16acb8e5 100644 --- a/find_path.c +++ b/find_path.c @@ -1,3 +1,12 @@ +/* + * CU sudo version 1.3 (based on Root Group sudo version 1.1) + * + * This software comes with no waranty whatsoever, use at your own risk. + * + * Please send bugs, changes, problems to sudo-bugs.cs.colorado.edu + * + */ + /* * sudo version 1.1 allows users to execute commands as root * Copyright (C) 1991 The Root Group, Inc. @@ -16,12 +25,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * - * If you make modifications to the source, we would be happy to have - * them to include in future releases. Feel free to send them to: - * Jeff Nieusma nieusma@rootgroup.com - * 3959 Arbol CT (303) 447-8093 - * Boulder, CO 80301-1752 - * ******************************************************************* * * This module contains the find_path() command that returns @@ -41,6 +44,10 @@ * Todd C. Miller (millert@colorado.edu) Sat Sep 4 12:22:04 MDT 1993 */ +#ifndef lint +static char rcsid[] = "$Id$"; +#endif /* lint */ + #include #include #include diff --git a/logging.c b/logging.c index 155392ef8..a46ebfb11 100644 --- a/logging.c +++ b/logging.c @@ -1,3 +1,12 @@ +/* + * CU sudo version 1.3 (based on Root Group sudo version 1.1) + * + * This software comes with no waranty whatsoever, use at your own risk. + * + * Please send bugs, changes, problems to sudo-bugs.cs.colorado.edu + * + */ + /* * sudo version 1.1 allows users to execute commands as root * Copyright (C) 1991 The Root Group, Inc. @@ -16,12 +25,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * - * If you make modifications to the source, we would be happy to have - * them to include in future releases. Feel free to send them to: - * Jeff Nieusma nieusma@rootgroup.com - * 3959 Arbol CT (303) 447-8093 - * Boulder, CO 80301-1752 - * **************************************************************** * * logging.c @@ -33,6 +36,10 @@ * Jeff Nieusma Thu Mar 21 23:39:04 MST 1991 */ +#ifndef lint +static char rcsid[] = "$Id$"; +#endif /* lint */ + #include #include #include diff --git a/parse.c b/parse.c index b61b7005b..b100a9373 100644 --- a/parse.c +++ b/parse.c @@ -1,3 +1,12 @@ +/* + * CU sudo version 1.3 (based on Root Group sudo version 1.1) + * + * This software comes with no waranty whatsoever, use at your own risk. + * + * Please send bugs, changes, problems to sudo-bugs.cs.colorado.edu + * + */ + /* * sudo version 1.1 allows users to execute commands as root * Copyright (C) 1991 The Root Group, Inc. @@ -16,12 +25,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * - * If you make modifications to the source, we would be happy to have - * them to include in future releases. Feel free to send them to: - * Jeff Nieusma nieusma@rootgroup.com - * 3959 Arbol CT (303) 447-8093 - * Boulder, CO 80301-1752 - * ************************************************************************** * * parse.c, sudo project @@ -31,6 +34,10 @@ * routines to implement and maintain the parsing and list management. */ +#ifndef lint +static char rcsid[] = "$Id$"; +#endif /* lint */ + #include #include #include diff --git a/parse.lex b/parse.lex index d4c33528a..1a8b03d13 100644 --- a/parse.lex +++ b/parse.lex @@ -1,4 +1,13 @@ %{ +/* + * CU sudo version 1.3 (based on Root Group sudo version 1.1) + * + * This software comes with no waranty whatsoever, use at your own risk. + * + * Please send bugs, changes, problems to sudo-bugs.cs.colorado.edu + * + */ + /* * sudo version 1.1 allows users to execute commands as root * Copyright (C) 1991 The Root Group, Inc. @@ -17,11 +26,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * - * If you make modifications to the source, we would be happy to have - * them to include in future releases. Feel free to send them to: - * Jeff Nieusma nieusma@rootgroup.com - * 3959 Arbol CT (303) 447-8093 - * Boulder, CO 80301-1752 */ /******************************************************************************* * parse.lex, sudo project @@ -30,6 +34,11 @@ * * Lex Specification file for the sudo project. *******************************************************************************/ + +#ifndef lint +static char rcsid[] = "$Id$"; +#endif /* lint */ + #include #include #include "sudo.h" diff --git a/parse.yacc b/parse.yacc index 6d64723fd..97e99569b 100644 --- a/parse.yacc +++ b/parse.yacc @@ -1,4 +1,13 @@ %{ +/* + * CU sudo version 1.3 (based on Root Group sudo version 1.1) + * + * This software comes with no waranty whatsoever, use at your own risk. + * + * Please send bugs, changes, problems to sudo-bugs.cs.colorado.edu + * + */ + /* * sudo version 1.1 allows users to execute commands as root * Copyright (C) 1991 The Root Group, Inc. @@ -17,11 +26,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * - * If you make modifications to the source, we would be happy to have - * them to include in future releases. Feel free to send them to: - * Jeff Nieusma nieusma@rootgroup.com - * 3959 Arbol CT (303) 447-8093 - * Boulder, CO 80301-1752 */ /******************************************************************************* * parse.yacc, sudo project @@ -30,6 +34,11 @@ * * Yacc Specification file for the sudo project. *******************************************************************************/ + +#ifndef lint +static char rcsid[] = "$Id$"; +#endif /* lint */ + #include #include #include diff --git a/sudo.c b/sudo.c index 6e058b2b5..d7339f831 100644 --- a/sudo.c +++ b/sudo.c @@ -1,3 +1,12 @@ +/* + * CU sudo version 1.3 (based on Root Group sudo version 1.1) + * + * This software comes with no waranty whatsoever, use at your own risk. + * + * Please send bugs, changes, problems to sudo-bugs.cs.colorado.edu + * + */ + /* * sudo version 1.1 allows users to execute commands as root * Copyright (C) 1991 The Root Group, Inc. @@ -16,12 +25,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * - * If you make modifications to the source, we would be happy to have - * them to include in future releases. Feel free to send them to: - * Jeff Nieusma nieusma@rootgroup.com - * 3959 Arbol CT (303) 447-8093 - * Boulder, CO 80301-1752 - * ************************************************************************** * * sudo.c @@ -40,8 +43,17 @@ * * Jeff Nieusma * Dave Hieb + * + * However, due to the fact that both of the above are no longer + * working at Root Group, I am maintaining the "CU version" of + * sudo. + * Todd Miller */ +#ifndef lint +static char rcsid[] = "$Id$"; +#endif /* lint */ + #define MAIN #include diff --git a/sudo.h b/sudo.h index 76ed41622..b37c47fd6 100644 --- a/sudo.h +++ b/sudo.h @@ -1,3 +1,12 @@ +/* + * CU sudo version 1.3 (based on Root Group sudo version 1.1) + * + * This software comes with no waranty whatsoever, use at your own risk. + * + * Please send bugs, changes, problems to sudo-bugs.cs.colorado.edu + * + */ + /* * sudo version 1.1 allows users to execute commands as root * Copyright (C) 1991 The Root Group, Inc. @@ -15,12 +24,6 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - * - * If you make modifications to the source, we would be happy to have - * them to include in future releases. Feel free to send them to: - * Jeff Nieusma nieusma@rootgroup.com - * 3959 Arbol CT (303) 447-8093 - * Boulder, CO 80301-1752 */ /* The following macros can be defined when compiling