replace copyrights with public domain notices,
authorJohn Kohl <jtkohl@mit.edu>
Tue, 10 Jul 1990 10:05:16 +0000 (10:05 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Tue, 10 Jul 1990 10:05:16 +0000 (10:05 +0000)
per document from Dan.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1043 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/rcache/rc_base.c
src/lib/krb5/rcache/rc_base.h
src/lib/krb5/rcache/rc_dfl.c
src/lib/krb5/rcache/rc_dfl.h
src/lib/krb5/rcache/rc_io.c
src/lib/krb5/rcache/rc_io.h

index 199beee2ce07b69a4b904b4ccbda24f549f0c4e2..7a99d9693584555bae14147e6daed2bda0ffc2d4 100644 (file)
@@ -1,8 +1,23 @@
 /*
-Copyright 1990, Daniel J. Bernstein. All rights reserved.
+ * $Source$
+ * $Author$
+ *
+ * This part of the Kerberos V5 software is derived from public-domain code
+ * contributed by Daniel J. Bernstein, <brnstnd@acf10.nyu.edu>.
+ *
+ * XXX correct notice?
+ * This portion of the software may be freely distributed; this permission
+ * shall not be construed to apply to any other portion of the software.
+ */
+
+#if !defined(lint) && !defined(SABER)
+static char rcsid_rc_base_c[] =
+"$Id$";
+#endif /* !lint & !SABER */
 
-Please address any questions or comments to the author at brnstnd@acf10.nyu.edu.
-*/
+/*
+ * Base "glue" functions for the replay cache.
+ */
 
 #ifdef SEMAPHORE
 #include <semaphore.h>
index f931450091cf18998af6c958377bcaf830d5da07..4e29cd6f49190a2b5a80d3ba7545e6a60c960399 100644 (file)
@@ -1,8 +1,15 @@
 /*
-Copyright 1990, Daniel J. Bernstein. All rights reserved.
-
-Please address any questions or comments to the author at brnstnd@acf10.nyu.edu.
-*/
+ * $Source$
+ * $Author$
+ * $Id$
+ *
+ * This part of the Kerberos V5 software is derived from public-domain code
+ * contributed by Daniel J. Bernstein, <brnstnd@acf10.nyu.edu>.
+ *
+ * XXX correct notice?
+ * This portion of the software may be freely distributed; this permission
+ * shall not be construed to apply to any other portion of the software.
+ */
 
 #ifndef KRB5_RC_H
 #define KRB5_RC_H
index 3179bc9118bd0e52981565dff0031d2fb4c5e569..d418892c854f7b2b0a9bc5b9d5689b0332be4da7 100644 (file)
@@ -1,8 +1,23 @@
 /*
-Copyright 1990, Daniel J. Bernstein. All rights reserved.
+ * $Source$
+ * $Author$
+ *
+ * This part of the Kerberos V5 software is derived from public-domain code
+ * contributed by Daniel J. Bernstein, <brnstnd@acf10.nyu.edu>.
+ *
+ * XXX correct notice?
+ * This portion of the software may be freely distributed; this permission
+ * shall not be construed to apply to any other portion of the software.
+ */
+
+#if !defined(lint) && !defined(SABER)
+static char rcsid_rc_base_c[] =
+"$Id$";
+#endif /* !lint & !SABER */
 
-Please address any questions or comments to the author at brnstnd@acf10.nyu.edu.
-*/
+/*
+ * An implementation for the default replay cache type.
+ */
 
 #define FREE(x) ((void) free((char *) (x)))
 #include "rc_base.h"
index 6c08a256f330b0a5ee52c5de8ccab6d62bb4c5ee..383f070280013063e57a6ac2f5f4bc0440a948ef 100644 (file)
@@ -1,8 +1,19 @@
 /*
-Copyright 1990, Daniel J. Bernstein. All rights reserved.
+ * $Source$
+ * $Author$
+ * $Id$
+ *
+ * This part of the Kerberos V5 software is derived from public-domain code
+ * contributed by Daniel J. Bernstein, <brnstnd@acf10.nyu.edu>.
+ *
+ * XXX correct notice?
+ * This portion of the software may be freely distributed; this permission
+ * shall not be construed to apply to any other portion of the software.
+ */
 
-Please address any questions or comments to the author at brnstnd@acf10.nyu.edu.
-*/
+/*
+ * Declarations for the default replay cache implementation.
+ */
 
 #ifndef KRB5_RC_DFL_H
 #define KRB5_RC_DFL_H
index 32829f42212111143b39029fff653b3d674e796d..0005bd9ebfbebf29d3c3ab671b6cc5cf1d216c8b 100644 (file)
@@ -1,8 +1,23 @@
 /*
-Copyright 1990, Daniel J. Bernstein. All rights reserved.
+ * $Source$
+ * $Author$
+ *
+ * This part of the Kerberos V5 software is derived from public-domain code
+ * contributed by Daniel J. Bernstein, <brnstnd@acf10.nyu.edu>.
+ *
+ * XXX correct notice?
+ * This portion of the software may be freely distributed; this permission
+ * shall not be construed to apply to any other portion of the software.
+ */
+
+#if !defined(lint) && !defined(SABER)
+static char rcsid_rc_base_c[] =
+"$Id$";
+#endif /* !lint & !SABER */
 
-Please address any questions or comments to the author at brnstnd@acf10.nyu.edu.
-*/
+/*
+ * I/O functions for the replay cache default implementation.
+ */
 
 #include <stdio.h> /* for P_tmpdir */
 
index b47480613caf023fa6f27bde7f28061c054aae61..5ae68764ff73abc02d575c3fd12ac7248d2e0b0d 100644 (file)
@@ -1,8 +1,19 @@
 /*
-Copyright 1990, Daniel J. Bernstein. All rights reserved.
+ * $Source$
+ * $Author$
+ * $Id$
+ *
+ * This part of the Kerberos V5 software is derived from public-domain code
+ * contributed by Daniel J. Bernstein, <brnstnd@acf10.nyu.edu>.
+ *
+ * XXX correct notice?
+ * This portion of the software may be freely distributed; this permission
+ * shall not be construed to apply to any other portion of the software.
+ */
 
-Please address any questions or comments to the author at brnstnd@acf10.nyu.edu.
-*/
+/*
+ * Declarations for the I/O sub-package of the replay cache
+ */
 
 #ifndef KRB5_RC_IO_H
 #define KRB5_RC_IO_H