diff options
| author | John Kohl <jtkohl@mit.edu> | 1990-07-10 10:05:16 +0000 |
|---|---|---|
| committer | John Kohl <jtkohl@mit.edu> | 1990-07-10 10:05:16 +0000 |
| commit | 45f74a329485ddc2ec9a8477c966616100095a08 (patch) | |
| tree | 21212c966a22f29241183684177c4454b1c8902a /src | |
| parent | 19df0c089cb23f2206dba4152cac3e3072b5be4d (diff) | |
| download | krb5-45f74a329485ddc2ec9a8477c966616100095a08.tar.gz krb5-45f74a329485ddc2ec9a8477c966616100095a08.tar.xz krb5-45f74a329485ddc2ec9a8477c966616100095a08.zip | |
replace copyrights with public domain notices,
per document from Dan.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1043 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/krb5/rcache/rc_base.c | 21 | ||||
| -rw-r--r-- | src/lib/krb5/rcache/rc_base.h | 15 | ||||
| -rw-r--r-- | src/lib/krb5/rcache/rc_dfl.c | 21 | ||||
| -rw-r--r-- | src/lib/krb5/rcache/rc_dfl.h | 17 | ||||
| -rw-r--r-- | src/lib/krb5/rcache/rc_io.c | 21 | ||||
| -rw-r--r-- | src/lib/krb5/rcache/rc_io.h | 17 |
6 files changed, 93 insertions, 19 deletions
diff --git a/src/lib/krb5/rcache/rc_base.c b/src/lib/krb5/rcache/rc_base.c index 199beee2c..7a99d9693 100644 --- a/src/lib/krb5/rcache/rc_base.c +++ b/src/lib/krb5/rcache/rc_base.c @@ -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> diff --git a/src/lib/krb5/rcache/rc_base.h b/src/lib/krb5/rcache/rc_base.h index f93145009..4e29cd6f4 100644 --- a/src/lib/krb5/rcache/rc_base.h +++ b/src/lib/krb5/rcache/rc_base.h @@ -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 diff --git a/src/lib/krb5/rcache/rc_dfl.c b/src/lib/krb5/rcache/rc_dfl.c index 3179bc911..d418892c8 100644 --- a/src/lib/krb5/rcache/rc_dfl.c +++ b/src/lib/krb5/rcache/rc_dfl.c @@ -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" diff --git a/src/lib/krb5/rcache/rc_dfl.h b/src/lib/krb5/rcache/rc_dfl.h index 6c08a256f..383f07028 100644 --- a/src/lib/krb5/rcache/rc_dfl.h +++ b/src/lib/krb5/rcache/rc_dfl.h @@ -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 diff --git a/src/lib/krb5/rcache/rc_io.c b/src/lib/krb5/rcache/rc_io.c index 32829f422..0005bd9eb 100644 --- a/src/lib/krb5/rcache/rc_io.c +++ b/src/lib/krb5/rcache/rc_io.c @@ -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 */ diff --git a/src/lib/krb5/rcache/rc_io.h b/src/lib/krb5/rcache/rc_io.h index b47480613..5ae68764f 100644 --- a/src/lib/krb5/rcache/rc_io.h +++ b/src/lib/krb5/rcache/rc_io.h @@ -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 |
