summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Rekorajski <baggins@sith.mimuw.edu.pl>2000-12-04 19:02:33 +0000
committerJan Rekorajski <baggins@sith.mimuw.edu.pl>2000-12-04 19:02:33 +0000
commit77b11e3dfdb0f0f83fa531b9bcb7bc0d3243fbae (patch)
treec9e08ed007a78e975754bf5c595ad0b593db4b52
parent6a36792321ef91dc91c9887d5c56db88e6546047 (diff)
Relevant BUGIDs: 124391
Purpose of commit: cleanup Commit summary: --------------- * removed unnecessary CVS Log tags from all over the source
-rw-r--r--CHANGELOG2
-rw-r--r--bin/README15
-rwxr-xr-xconf/md5itall8
-rw-r--r--examples/blank.c24
-rw-r--r--examples/check_user.c13
-rw-r--r--examples/test.c19
-rw-r--r--libpam/include/security/pam_malloc.h14
-rw-r--r--libpam/include/security/pam_modules.h26
-rw-r--r--libpam/pam_auth.c10
-rw-r--r--libpam/pam_delay.c10
-rw-r--r--libpam/pam_item.c16
-rw-r--r--libpam/pam_malloc.c28
-rw-r--r--libpam/pam_map.c7
-rw-r--r--libpam/pam_second.c7
-rw-r--r--libpam/pam_session.c16
-rw-r--r--libpam/pam_strerror.c23
-rw-r--r--libpam/pam_tokens.h7
-rw-r--r--libpam_misc/help_env.c13
-rw-r--r--modules/pam_deny/pam_deny.c19
-rw-r--r--modules/pam_nologin/pam_nologin.c20
-rw-r--r--modules/pam_permit/pam_permit.c16
-rw-r--r--modules/pam_pwdb/BUGS11
-rw-r--r--modules/pam_pwdb/md5.c15
-rw-r--r--modules/pam_pwdb/md5_crypt.c15
-rw-r--r--modules/pam_pwdb/pam_unix_acct.-c26
-rw-r--r--modules/pam_pwdb/pam_unix_passwd.-c33
-rw-r--r--modules/pam_pwdb/pam_unix_sess.-c20
-rw-r--r--modules/pam_rhosts/pam_rhosts_auth.c43
-rw-r--r--modules/pam_time/README13
29 files changed, 8 insertions, 481 deletions
diff --git a/CHANGELOG b/CHANGELOG
index d46217b5..3a511d72 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -35,6 +35,8 @@ Where you should replace XXXXX with a bug-id.
0.74: please submit patches for this section with actual code/doc
patches!
+* removed unnecessary CVS Log tags from all over the source
+ (Bug 124391 - baggins)
* pam_tally - check for PAM_TTY if PAM_RHOST is not set when writing
to faillog (Bug 124394 - baggins)
* use O_NOFOLLOW if available when opening debug log (Bug 124385 - baggins)
diff --git a/bin/README b/bin/README
index 6ab61b77..c6b8fea3 100644
--- a/bin/README
+++ b/bin/README
@@ -1,21 +1,6 @@
##
# $Id$
##
-# $Log$
-# Revision 1.1 2000/06/20 22:10:44 agmorgan
-# Initial revision
-#
-# Revision 1.1.1.1 1998/07/12 05:17:14 morgan
-# Linux PAM sources pre-0.66
-#
-# Revision 1.6 1997/02/15 19:21:08 morgan
-# fixed email
-#
-# Revision 1.5 1996/08/09 05:29:43 morgan
-# trimmed in line with the removal of applications from the distribution
-#
-#
-##
(now we are getting networked apps, be careful to try and test on a
securely isolated system!)
diff --git a/conf/md5itall b/conf/md5itall
index 14cd7c01..b5fecc40 100755
--- a/conf/md5itall
+++ b/conf/md5itall
@@ -2,14 +2,6 @@
#
# $Id$
#
-# $Log$
-# Revision 1.1 2000/06/20 22:10:45 agmorgan
-# Initial revision
-#
-# Revision 1.1.1.1 1998/07/12 05:17:14 morgan
-# Linux PAM sources pre-0.66
-#
-#
# Created by Andrew G. Morgan (morgan@parc.power.net)
#
diff --git a/examples/blank.c b/examples/blank.c
index 33b5056e..9d51756e 100644
--- a/examples/blank.c
+++ b/examples/blank.c
@@ -1,29 +1,5 @@
/*
* $Id$
- *
- * $Log$
- * Revision 1.1 2000/06/20 22:11:13 agmorgan
- * Initial revision
- *
- * Revision 1.2 1999/11/08 05:39:53 morgan
- * removed void main def which was making gcc complain
- *
- * Revision 1.1.1.1 1998/07/12 05:17:14 morgan
- * Linux PAM sources pre-0.66
- *
- * Revision 1.7 1996/12/01 03:16:53 morgan
- * added setcred closing function
- *
- * Revision 1.6 1996/11/10 19:51:40 morgan
- * minor change to avoid gcc warning
- *
- * Revision 1.5 1996/07/07 23:53:05 morgan
- * added optional fail delay (non-standard Linux-PAM)
- *
- * Revision 1.4 1996/05/02 04:44:18 morgan
- * moved conversation to a libmisc library routine.
- *
- *
*/
/* Andrew Morgan (morgan@parc.power.net) -- a self contained `blank'
diff --git a/examples/check_user.c b/examples/check_user.c
index 6d52ccaa..4a33f2a8 100644
--- a/examples/check_user.c
+++ b/examples/check_user.c
@@ -8,18 +8,7 @@
# check authorization
check auth required pam_unix_auth.so
check account required pam_unix_acct.so
-
- $Log$
- Revision 1.1 2000/06/20 22:11:13 agmorgan
- Initial revision
-
- Revision 1.1.1.1 1998/07/12 05:17:14 morgan
- Linux PAM sources pre-0.66
-
- Revision 1.1 1996/11/10 21:19:30 morgan
- Initial revision
-
- */
+*/
#include <security/pam_appl.h>
#include <security/pam_misc.h>
diff --git a/examples/test.c b/examples/test.c
index 8fc5e6cd..7e166b48 100644
--- a/examples/test.c
+++ b/examples/test.c
@@ -1,22 +1,5 @@
/*
- * $Log$
- * Revision 1.1 2000/06/20 22:11:13 agmorgan
- * Initial revision
- *
- * Revision 1.1.1.1 1998/07/12 05:17:14 morgan
- * Linux PAM sources pre-0.66
- *
- * Revision 1.3 1996/03/10 00:14:20 morgan
- * made lines less than 80 chars long.
- *
- * Revision 1.2 1996/03/09 09:16:26 morgan
- * changed the header file that it includes.
- *
- * Revision 1.1 1996/03/09 09:13:34 morgan
- * Initial revision
- */
-
-/* Marc Ewing (marc@redhat.com) - original test code
+ * Marc Ewing (marc@redhat.com) - original test code
* Alexander O. Yuriev (alex@bach.cis.temple.edu)
* Andrew Morgan (morgan@physics.ucla.edu)
*/
diff --git a/libpam/include/security/pam_malloc.h b/libpam/include/security/pam_malloc.h
index 8daf3f7c..62777ca8 100644
--- a/libpam/include/security/pam_malloc.h
+++ b/libpam/include/security/pam_malloc.h
@@ -1,15 +1,5 @@
-/* $Id$
- *
- * $Log$
- * Revision 1.1 2000/06/20 22:11:23 agmorgan
- * Initial revision
- *
- * Revision 1.1.1.1 1998/07/12 05:17:15 morgan
- * Linux PAM sources pre-0.66
- *
- * Revision 1.1 1996/11/10 21:23:14 morgan
- * Initial revision
- *
+/*
+ * $Id$
*/
/*
diff --git a/libpam/include/security/pam_modules.h b/libpam/include/security/pam_modules.h
index 945c1711..b555e8b2 100644
--- a/libpam/include/security/pam_modules.h
+++ b/libpam/include/security/pam_modules.h
@@ -3,32 +3,6 @@
*
* $Id$
*
- * This header file documents the PAM SPI --- that is, interface
- * between the PAM library and a PAM service library which is called
- * by the PAM library.
- *
- * Note, the copyright information is at end of file.
- *
- * $Log$
- * Revision 1.1 2000/06/20 22:11:23 agmorgan
- * Initial revision
- *
- * Revision 1.1.1.1 1998/07/12 05:17:15 morgan
- * Linux PAM sources pre-0.66
- *
- * Revision 1.8 1997/01/04 20:14:42 morgan
- * moved PAM_DATA_SILENT to _pam_types.h so applications can use it too
- *
- * Revision 1.7 1996/11/10 19:57:08 morgan
- * pam_get_user prototype.
- *
- * Revision 1.6 1996/09/05 06:18:45 morgan
- * added some data error_status masks, changed prototype for cleanup()
- *
- * Revision 1.5 1996/06/02 07:58:37 morgan
- * altered the way in which modules obtain static prototypes for
- * functions
- *
*/
#ifndef _SECURITY_PAM_MODULES_H
diff --git a/libpam/pam_auth.c b/libpam/pam_auth.c
index c946eaab..8ee14ac0 100644
--- a/libpam/pam_auth.c
+++ b/libpam/pam_auth.c
@@ -3,16 +3,6 @@
*
* $Id$
*
- * $Log$
- * Revision 1.1 2000/06/20 22:11:13 agmorgan
- * Initial revision
- *
- * Revision 1.1.1.1 1998/07/12 05:17:15 morgan
- * Linux PAM sources pre-0.66
- *
- * Revision 1.7 1997/04/05 06:53:52 morgan
- * fail-delay changes
- *
*/
#include <stdio.h>
diff --git a/libpam/pam_delay.c b/libpam/pam_delay.c
index b7c6604d..8884879e 100644
--- a/libpam/pam_delay.c
+++ b/libpam/pam_delay.c
@@ -6,16 +6,6 @@
*
* $Id$
*
- * $Log$
- * Revision 1.1 2000/06/20 22:11:14 agmorgan
- * Initial revision
- *
- * Revision 1.2 1999/07/04 23:23:42 morgan
- * add appdata_ptr to app callback function
- *
- * Revision 1.1.1.1 1998/07/12 05:17:15 morgan
- * Linux PAM sources pre-0.66
- *
*/
/*
diff --git a/libpam/pam_item.c b/libpam/pam_item.c
index f595a0b4..2a545d6f 100644
--- a/libpam/pam_item.c
+++ b/libpam/pam_item.c
@@ -2,22 +2,6 @@
/*
* $Id$
- *
- * $Log$
- * Revision 1.1 2000/06/20 22:11:17 agmorgan
- * Initial revision
- *
- * Revision 1.3 1999/11/08 05:41:05 morgan
- * pam_log - extra paranoia
- * otherwise debugging changes
- *
- * Revision 1.2 1998/12/27 04:34:22 morgan
- * reverting logging functions within libpam. Gone are the externally
- * advertised API replaced by a more simple (libpam internal) one.
- *
- * Revision 1.1.1.1 1998/07/12 05:17:15 morgan
- * Linux PAM sources pre-0.66
- *
*/
#include <ctype.h>
diff --git a/libpam/pam_malloc.c b/libpam/pam_malloc.c
index 6b888747..c24ded68 100644
--- a/libpam/pam_malloc.c
+++ b/libpam/pam_malloc.c
@@ -1,33 +1,5 @@
/*
* $Id$
- *
- * $Log$
- * Revision 1.2 2000/12/04 18:31:56 baggins
- *
- * Relevant BUGIDs: 124385
- *
- * Purpose of commit: security
- *
- * Commit summary:
- * ---------------
- * * use O_NOFOLLOW if available when opening debug log
- *
- * Revision 1.1.1.1 2000/06/20 22:11:18 agmorgan
- * Imported 0.72 Linux-PAM sources
- *
- * Revision 1.2 1998/12/27 04:34:23 morgan
- * reverting logging functions within libpam. Gone are the externally
- * advertised API replaced by a more simple (libpam internal) one.
- *
- * Revision 1.1.1.1 1998/07/12 05:17:15 morgan
- * Linux PAM sources pre-0.66
- *
- * Revision 1.2 1996/12/01 03:14:13 morgan
- * use _pam_macros.h
- *
- * Revision 1.1 1996/11/10 21:26:11 morgan
- * Initial revision
- *
*/
/*
diff --git a/libpam/pam_map.c b/libpam/pam_map.c
index 8b969123..b27bb32b 100644
--- a/libpam/pam_map.c
+++ b/libpam/pam_map.c
@@ -5,13 +5,6 @@
* This is based on the X/Open XSSO specification of March 1997.
* It is not implemented as it is going to change... after 1997/9/25.
*
- * $Log$
- * Revision 1.1 2000/06/20 22:11:19 agmorgan
- * Initial revision
- *
- * Revision 1.1.1.1 1998/07/12 05:17:15 morgan
- * Linux PAM sources pre-0.66
- *
*/
#include <stdio.h>
diff --git a/libpam/pam_second.c b/libpam/pam_second.c
index 614275af..e764f987 100644
--- a/libpam/pam_second.c
+++ b/libpam/pam_second.c
@@ -4,13 +4,6 @@
*
* $Id$
*
- * $Log$
- * Revision 1.1 2000/06/20 22:11:20 agmorgan
- * Initial revision
- *
- * Revision 1.1.1.1 1998/07/12 05:17:15 morgan
- * Linux PAM sources pre-0.66
- *
*/
#include <stdio.h>
diff --git a/libpam/pam_session.c b/libpam/pam_session.c
index eae464c8..de2538d0 100644
--- a/libpam/pam_session.c
+++ b/libpam/pam_session.c
@@ -2,22 +2,6 @@
/*
* $Id$
- *
- * $Log$
- * Revision 1.1 2000/06/20 22:11:20 agmorgan
- * Initial revision
- *
- * Revision 1.1.1.1 1998/07/12 05:17:15 morgan
- * Linux PAM sources pre-0.66
- *
- * Revision 1.3 1996/12/01 03:14:13 morgan
- * use _pam_macros.h
- *
- * Revision 1.2 1996/03/10 02:19:12 morgan
- * some oversight meant that this wasn't being compiled. It needed a
- * couple of changes.
- *
- *
*/
#include <stdio.h>
diff --git a/libpam/pam_strerror.c b/libpam/pam_strerror.c
index ecf8c0bb..2c588258 100644
--- a/libpam/pam_strerror.c
+++ b/libpam/pam_strerror.c
@@ -1,26 +1,7 @@
/* pam_strerror.c */
-/* $Id$
- *
- * $Log$
- * Revision 1.1 2000/06/20 22:11:21 agmorgan
- * Initial revision
- *
- * Revision 1.1.1.1 1998/07/12 05:17:15 morgan
- * Linux PAM sources pre-0.66
- *
- * Revision 1.6 1997/01/04 20:12:02 morgan
- * replaced conditional FAIL_NOW with ABORT
- *
- * Revision 1.5 1996/07/07 23:58:56 morgan
- * corrected "... " to "..."
- *
- * Revision 1.4 1996/06/02 08:03:29 morgan
- * spelling correction
- *
- * Revision 1.3 1996/03/16 23:08:54 morgan
- * PAM --> Linux-PAM ;)
- *
+/*
+ * $Id$
*/
#include "pam_private.h"
diff --git a/libpam/pam_tokens.h b/libpam/pam_tokens.h
index 1fd32641..881fcc47 100644
--- a/libpam/pam_tokens.h
+++ b/libpam/pam_tokens.h
@@ -9,13 +9,6 @@
* Please see end of file for copyright.
*
* Creator: Andrew Morgan.
- *
- * $Log$
- * Revision 1.1 2000/06/20 22:11:21 agmorgan
- * Initial revision
- *
- * Revision 1.1.1.1 1998/07/12 05:17:15 morgan
- * Linux PAM sources pre-0.66
*
*/
diff --git a/libpam_misc/help_env.c b/libpam_misc/help_env.c
index d52b3a02..9f66156e 100644
--- a/libpam_misc/help_env.c
+++ b/libpam_misc/help_env.c
@@ -3,19 +3,6 @@
*
* This file was written by Andrew G. Morgan <morgan@parc.power.net>
*
- * $Log$
- * Revision 1.1 2000/06/20 22:11:24 agmorgan
- * Initial revision
- *
- * Revision 1.1.1.1 1998/07/12 05:17:15 morgan
- * Linux PAM sources pre-0.66
- *
- * Revision 1.2 1997/01/04 20:19:20 morgan
- * added a prototype (no warning) and fixed paste function
- *
- * Revision 1.1 1996/12/01 03:25:37 morgan
- * Initial revision
- *
*/
#include <stdlib.h>
diff --git a/modules/pam_deny/pam_deny.c b/modules/pam_deny/pam_deny.c
index 123cb21b..b474751d 100644
--- a/modules/pam_deny/pam_deny.c
+++ b/modules/pam_deny/pam_deny.c
@@ -5,25 +5,6 @@
*
* Written by Andrew Morgan <morgan@parc.power.net> 1996/3/11
*
- * $Log$
- * Revision 1.1 2000/06/20 22:11:33 agmorgan
- * Initial revision
- *
- * Revision 1.1.1.1 1998/07/12 05:17:16 morgan
- * Linux PAM sources pre-0.66
- *
- * Revision 1.4 1997/02/15 19:05:15 morgan
- * fixed email
- *
- * Revision 1.3 1996/06/02 08:06:19 morgan
- * changes for new static protocol
- *
- * Revision 1.2 1996/05/26 04:01:12 morgan
- * added static support
- *
- * Revision 1.1 1996/03/16 17:47:36 morgan
- * Initial revision
- *
*/
/*
diff --git a/modules/pam_nologin/pam_nologin.c b/modules/pam_nologin/pam_nologin.c
index 306619e1..708f86de 100644
--- a/modules/pam_nologin/pam_nologin.c
+++ b/modules/pam_nologin/pam_nologin.c
@@ -5,26 +5,6 @@
*
* Written by Michael K. Johnson <johnsonm@redhat.com> 1996/10/24
*
- * $Log$
- * Revision 1.1 2000/06/20 22:11:46 agmorgan
- * Initial revision
- *
- * Revision 1.1.1.1 1998/07/12 05:17:17 morgan
- * Linux PAM sources pre-0.66
- *
- * Revision 1.4 1997/04/05 06:36:47 morgan
- * display message when the user is unknown
- *
- * Revision 1.3 1996/12/01 03:00:54 morgan
- * added prototype to conversation, gave static structure name of module
- *
- * Revision 1.2 1996/11/10 21:02:31 morgan
- * compile against .53
- *
- * Revision 1.1 1996/10/25 03:19:36 morgan
- * Initial revision
- *
- *
*/
#include <stdio.h>
diff --git a/modules/pam_permit/pam_permit.c b/modules/pam_permit/pam_permit.c
index cf11a2dc..ea23b312 100644
--- a/modules/pam_permit/pam_permit.c
+++ b/modules/pam_permit/pam_permit.c
@@ -5,22 +5,6 @@
*
* Written by Andrew Morgan <morgan@parc.power.net> 1996/3/11
*
- * $Log$
- * Revision 1.1 2000/06/20 22:11:46 agmorgan
- * Initial revision
- *
- * Revision 1.1.1.1 1998/07/12 05:17:16 morgan
- * Linux PAM sources pre-0.66
- *
- * Revision 1.5 1997/02/15 19:03:15 morgan
- * fixed email address
- *
- * Revision 1.4 1997/02/15 16:03:10 morgan
- * force a name for user
- *
- * Revision 1.3 1996/06/02 08:10:14 morgan
- * updated for new static protocol
- *
*/
#define DEFAULT_USER "nobody"
diff --git a/modules/pam_pwdb/BUGS b/modules/pam_pwdb/BUGS
index e7170b70..a3608a7c 100644
--- a/modules/pam_pwdb/BUGS
+++ b/modules/pam_pwdb/BUGS
@@ -1,14 +1,3 @@
$Id$
-$Log$
-Revision 1.1 2000/06/20 22:11:46 agmorgan
-Initial revision
-
-Revision 1.1.1.1 1998/07/12 05:17:16 morgan
-Linux PAM sources pre-0.66
-
-Revision 1.2 1996/09/05 06:36:16 morgan
-revised for .52 to be released
-
-
As of Linux-PAM-0.52 this is new. No known bugs yet.
diff --git a/modules/pam_pwdb/md5.c b/modules/pam_pwdb/md5.c
index d3f47763..335908df 100644
--- a/modules/pam_pwdb/md5.c
+++ b/modules/pam_pwdb/md5.c
@@ -15,21 +15,6 @@
* needed on buffers full of bytes, and then call MD5Final, which
* will fill a supplied 16-byte array with the digest.
*
- * $Log$
- * Revision 1.1 2000/06/20 22:11:48 agmorgan
- * Initial revision
- *
- * Revision 1.2 1999/07/04 23:22:38 morgan
- * Andrey's MD5 (bigendian) work around + cleanup to address problems with
- * applications that let an (ab)user kill them off without giving PAM the
- * opportunity to end. [Problem report from Tani Hosokawa on bugtraq.]
- *
- * Revision 1.1.1.1 1998/07/12 05:17:17 morgan
- * Linux PAM sources pre-0.66
- *
- * Revision 1.1 1996/09/05 06:43:31 morgan
- * Initial revision
- *
*/
#include <string.h>
diff --git a/modules/pam_pwdb/md5_crypt.c b/modules/pam_pwdb/md5_crypt.c
index 1d755a08..4226dd1e 100644
--- a/modules/pam_pwdb/md5_crypt.c
+++ b/modules/pam_pwdb/md5_crypt.c
@@ -9,21 +9,6 @@
*
* Origin: Id: crypt.c,v 1.3 1995/05/30 05:42:22 rgrimes Exp
*
- * $Log$
- * Revision 1.1 2000/06/20 22:11:48 agmorgan
- * Initial revision
- *
- * Revision 1.2 1999/07/04 23:22:38 morgan
- * Andrey's MD5 (bigendian) work around + cleanup to address problems with
- * applications that let an (ab)user kill them off without giving PAM the
- * opportunity to end. [Problem report from Tani Hosokawa on bugtraq.]
- *
- * Revision 1.1.1.1 1998/07/12 05:17:17 morgan
- * Linux PAM sources pre-0.66
- *
- * Revision 1.1 1996/09/05 06:43:31 morgan
- * Initial revision
- *
*/
#include <string.h>
diff --git a/modules/pam_pwdb/pam_unix_acct.-c b/modules/pam_pwdb/pam_unix_acct.-c
index 16869054..0ee3b3d5 100644
--- a/modules/pam_pwdb/pam_unix_acct.-c
+++ b/modules/pam_pwdb/pam_unix_acct.-c
@@ -1,32 +1,6 @@
/*
* $Id$
*
- * $Log$
- * Revision 1.1 2000/06/20 22:11:49 agmorgan
- * Initial revision
- *
- * Revision 1.1.1.1 1998/07/12 05:17:17 morgan
- * Linux PAM sources pre-0.66
- *
- * Revision 1.6 1997/01/04 20:37:15 morgan
- * extra debugging
- *
- * Revision 1.5 1996/12/01 03:05:54 morgan
- * debugging with _pam_macros.h
- *
- * Revision 1.4 1996/11/10 21:03:57 morgan
- * pwdb conversion
- *
- * Revision 1.3 1996/09/05 06:45:45 morgan
- * tidied shadow acct management
- *
- * Revision 1.2 1996/09/01 01:13:14 morgan
- * Cristian Gafton's patches
- *
- * Revision 1.1 1996/08/29 13:27:51 morgan
- * Initial revision
- *
- *
* See end of file for copyright information
*/
diff --git a/modules/pam_pwdb/pam_unix_passwd.-c b/modules/pam_pwdb/pam_unix_passwd.-c
index 13801ba3..e0ef0917 100644
--- a/modules/pam_pwdb/pam_unix_passwd.-c
+++ b/modules/pam_pwdb/pam_unix_passwd.-c
@@ -1,38 +1,5 @@
/* $Id$ */
-/*
- * $Log$
- * Revision 1.1 2000/06/20 22:11:50 agmorgan
- * Initial revision
- *
- * Revision 1.2 1999/07/04 23:22:38 morgan
- * Andrey's MD5 (bigendian) work around + cleanup to address problems with
- * applications that let an (ab)user kill them off without giving PAM the
- * opportunity to end. [Problem report from Tani Hosokawa on bugtraq.]
- *
- * Revision 1.1.1.1 1998/07/12 05:17:16 morgan
- * Linux PAM sources pre-0.66
- *
- * Revision 1.6 1997/04/05 06:31:06 morgan
- * mostly a reformat.
- *
- * Revision 1.5 1996/12/01 03:05:54 morgan
- * debugging with _pam_macros.h
- *
- * Revision 1.4 1996/11/10 21:04:51 morgan
- * pwdb conversion
- *
- * Revision 1.3 1996/09/05 06:48:15 morgan
- * A lot has changed. I'd recommend you study the diff.
- *
- * Revision 1.2 1996/09/01 16:33:27 morgan
- * Cristian Gafton's changes
- *
- * Revision 1.1 1996/08/29 13:21:27 morgan
- * Initial revision
- *
- */
-
static const char rcsid_pass[] =
"$Id$\n"
" - PAM_PWDB password module <morgan@parc.power.net>"
diff --git a/modules/pam_pwdb/pam_unix_sess.-c b/modules/pam_pwdb/pam_unix_sess.-c
index e1fe820b..8f862eae 100644
--- a/modules/pam_pwdb/pam_unix_sess.-c
+++ b/modules/pam_pwdb/pam_unix_sess.-c
@@ -1,26 +1,6 @@
/*
* $Id$
*
- * $Log$
- * Revision 1.1 2000/06/20 22:11:51 agmorgan
- * Initial revision
- *
- * Revision 1.1.1.1 1998/07/12 05:17:16 morgan
- * Linux PAM sources pre-0.66
- *
- * Revision 1.4 1996/12/01 03:05:54 morgan
- * debugging with _pam_macros.h
- *
- * Revision 1.3 1996/11/10 21:05:33 morgan
- * pwdb conversion
- *
- * Revision 1.2 1996/09/05 06:49:02 morgan
- * more informative logging
- *
- * Revision 1.1 1996/08/29 13:27:51 morgan
- * Initial revision
- *
- *
* See end for Copyright information
*/
diff --git a/modules/pam_rhosts/pam_rhosts_auth.c b/modules/pam_rhosts/pam_rhosts_auth.c
index f9707cfc..b633a529 100644
--- a/modules/pam_rhosts/pam_rhosts_auth.c
+++ b/modules/pam_rhosts/pam_rhosts_auth.c
@@ -784,46 +784,3 @@ struct pam_module _pam_rhosts_auth_modstruct = {
};
#endif
-
-/*
- * $Log$
- * Revision 1.1 2000/06/20 22:11:56 agmorgan
- * Initial revision
- *
- * Revision 1.4 1999/11/08 05:46:58 morgan
- * fixes for .71
- *
- * Revision 1.3 1999/10/09 05:12:49 morgan
- * added hosts_equiv_rootok support
- *
- * Revision 1.2 1998/12/14 05:47:58 morgan
- * added a couple of options: specify the name of root, and don't do the
- * user-known check.
- *
- * Revision 1.1.1.1 1998/07/12 05:17:16 morgan
- * Linux PAM sources pre-0.66
- *
- * Revision 1.12 1997/09/27 14:34:01 morgan
- * fixed comment and renamed iruserok to pam_iruserok.
- *
- * Revision 1.11 1997/04/05 06:26:39 morgan
- * fairly major fixes and enhancements (see CHANGELOG for 0.57 release)
- *
- * Revision 1.10 1997/02/09 02:09:30 morgan
- * - implementation of 'debug' argument (Cristian Gafton)
- * - we check for uid=0 accounts instead of hardcoded 'root' (Cristian Gafton)
- *
- * Revision 1.9 1996/12/01 03:09:47 morgan
- * *** empty log message ***
- *
- * Revision 1.8 1996/11/12 06:08:59 morgan
- * Oliver Crow's "rootok" patch plus a little clean up of set_option
- * (AGM)
- *
- * Revision 1.7 1996/11/10 20:15:56 morgan
- * cross platform support
- *
- * Revision 1.6 1996/08/09 05:46:29 morgan
- * removed code for manually setting the remote username etc..
- *
- */
diff --git a/modules/pam_time/README b/modules/pam_time/README
index dcbe35e4..38b2b3e6 100644
--- a/modules/pam_time/README
+++ b/modules/pam_time/README
@@ -28,16 +28,3 @@ unrecognised rules are ignored (but an error is logged to syslog(3))
--------------------
Bugs to Andrew <morgan@parc.power.net> or the list <pam-list@redhat.com>
-
-########################################################################
-# $Log$
-# Revision 1.1 2000/06/20 22:12:00 agmorgan
-# Initial revision
-#
-# Revision 1.1.1.1 1998/07/12 05:17:16 morgan
-# Linux PAM sources pre-0.66
-#
-# Revision 1.3 1997/01/04 20:42:43 morgan
-# I want email on parc now
-#
-# \ No newline at end of file