]> granicus.if.org Git - sudo/commitdiff
updated version number and took out jeff's email (since it is invalid)
authorTodd C. Miller <Todd.Miller@courtesan.com>
Sat, 27 Nov 1993 23:42:49 +0000 (23:42 +0000)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Sat, 27 Nov 1993 23:42:49 +0000 (23:42 +0000)
check.c
find_path.c
logging.c
parse.c
parse.lex
parse.yacc
sudo.c
sudo.h

diff --git a/check.c b/check.c
index e6a208f779b13ed85ae378dd058c2ee7471f3256..552ca5ae71aa4c18e79b7397ae8128aa1b06a0f1 100644 (file)
--- 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.
  *  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
  *  Jeff Nieusma  Thu Mar 21 22:39:07 MST 1991
  */
 
+#ifndef lint
+static char rcsid[] = "$Id$";
+#endif /* lint */
+
 #include <stdio.h>
 #include <string.h>
 #include <strings.h>
index ec8a4e6e22739a9961b9f803a5d1f923a0ab20ce..d16acb8e5a23e0fadbffd1b8a7d9aef0e9e98461 100644 (file)
@@ -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.
  *  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
  *  Todd C. Miller (millert@colorado.edu) Sat Sep  4 12:22:04 MDT 1993
  */
 
+#ifndef lint
+static char rcsid[] = "$Id$";
+#endif /* lint */
+
 #include <stdio.h>
 #include <strings.h>
 #include <errno.h>
index 155392ef83084369fbc4e0cb74409b1b10a4f078..a46ebfb11f9191464f03ac828e550ebe30f0cf10 100644 (file)
--- 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.
  *  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
  *  Jeff Nieusma   Thu Mar 21 23:39:04 MST 1991
  */
 
+#ifndef lint
+static char rcsid[] = "$Id$";
+#endif /* lint */
+
 #include <stdio.h>
 #include <string.h>
 #include <signal.h>
diff --git a/parse.c b/parse.c
index b61b7005b5ffdcdc517a9eb1d7ac56eb35728ef6..b100a9373eecaa51ce05e52d767f4b5615603208 100644 (file)
--- 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.
  *  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
  * routines to implement and maintain the parsing and list management.
  */
 
+#ifndef lint
+static char rcsid[] = "$Id$";
+#endif /* lint */
+
 #include <stdio.h>
 #include <strings.h>
 #include <ctype.h>
index d4c33528a05841b1dd558e0f132bdeed5129b39b..1a8b03d137af171cd3dab486d4710007547768dc 100644 (file)
--- 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.
  *  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
 *
 * Lex Specification file for the sudo project.
 *******************************************************************************/
+
+#ifndef lint
+static char rcsid[] = "$Id$";
+#endif /* lint */
+
 #include <sys/types.h>
 #include <sys/param.h>
 #include "sudo.h"
index 6d64723fd893c826e58c58d5df37dbf12762e50e..97e99569bede009f914a03ecc6bd2b080d732dc3 100644 (file)
@@ -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.
  *  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
 *
 * Yacc Specification file for the sudo project.
 *******************************************************************************/
+
+#ifndef lint
+static char rcsid[] = "$Id$";
+#endif /* lint */
+
 #include <stdio.h>
 #include <sys/types.h>
 #include <sys/param.h>
diff --git a/sudo.c b/sudo.c
index 6e058b2b5f6d6367c32103352a460ad0e5b789d1..d7339f8314cd7d4302bc96f3e83f933eb30e526d 100644 (file)
--- 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.
  *  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
  *
  *              Jeff Nieusma <nieusma@rootgroup.com>
  *              Dave Hieb    <davehieb@rootgroup.com>
+ *
+ *   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  <millert@cs.colorado.edu>
  */
 
+#ifndef lint
+static char rcsid[] = "$Id$";
+#endif /* lint */
+
 #define MAIN
 
 #include <stdio.h>
diff --git a/sudo.h b/sudo.h
index 76ed4162242e2772fd67ff3b67e36521cd8dd201..b37c47fd60c2b4753da10132fbbea1dcf273297f 100644 (file)
--- 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.
  *  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