diff options
Diffstat (limited to 'Linux-PAM/conf')
-rw-r--r-- | Linux-PAM/conf/Makefile | 2 | ||||
-rwxr-xr-x | Linux-PAM/conf/md5itall | 2 | ||||
-rw-r--r-- | Linux-PAM/conf/pam.conf | 2 | ||||
-rw-r--r-- | Linux-PAM/conf/pam_conv1/Makefile | 4 | ||||
-rw-r--r-- | Linux-PAM/conf/pam_conv1/README | 2 | ||||
-rw-r--r-- | Linux-PAM/conf/pam_conv1/pam_conv.lex | 4 | ||||
-rw-r--r-- | Linux-PAM/conf/pam_conv1/pam_conv.y | 4 |
7 files changed, 10 insertions, 10 deletions
diff --git a/Linux-PAM/conf/Makefile b/Linux-PAM/conf/Makefile index a668607b..67523c59 100644 --- a/Linux-PAM/conf/Makefile +++ b/Linux-PAM/conf/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.1.1.1 2001/04/29 04:16:25 hartmans Exp $ +# $Id: Makefile,v 1.1.1.1 2000/06/20 22:10:44 agmorgan Exp $ # # diff --git a/Linux-PAM/conf/md5itall b/Linux-PAM/conf/md5itall index 2f532b31..0f2656fe 100755 --- a/Linux-PAM/conf/md5itall +++ b/Linux-PAM/conf/md5itall @@ -1,6 +1,6 @@ #!/bin/bash # -# $Id: md5itall,v 1.1.1.1 2001/04/29 04:16:26 hartmans Exp $ +# $Id: md5itall,v 1.2 2000/12/04 19:02:33 baggins Exp $ # # Created by Andrew G. Morgan (morgan@parc.power.net) # diff --git a/Linux-PAM/conf/pam.conf b/Linux-PAM/conf/pam.conf index 395b7ba3..8e78e547 100644 --- a/Linux-PAM/conf/pam.conf +++ b/Linux-PAM/conf/pam.conf @@ -3,7 +3,7 @@ # # # Last modified by Andrew G. Morgan <morgan@kernel.org> # # ---------------------------------------------------------------------------# -# $Id: pam.conf,v 1.1.1.1 2001/04/29 04:16:26 hartmans Exp $ +# $Id: pam.conf,v 1.2 2001/04/08 06:02:33 agmorgan Exp $ # ---------------------------------------------------------------------------# # serv. module ctrl module [path] ...[args..] # # name type flag # diff --git a/Linux-PAM/conf/pam_conv1/Makefile b/Linux-PAM/conf/pam_conv1/Makefile index f23c8aa6..daf2e6cf 100644 --- a/Linux-PAM/conf/pam_conv1/Makefile +++ b/Linux-PAM/conf/pam_conv1/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.1.1.2 2002/09/15 20:08:22 hartmans Exp $ +# $Id: Makefile,v 1.3 2004/09/23 15:52:56 kukuk Exp $ # include ../../Make.Rules @@ -21,7 +21,7 @@ else all: pam_conv1 pam_conv1: pam_conv.tab.c lex.yy.c - $(CC) -o pam_conv1 pam_conv.tab.c $(LINK_LIBLEX) + $(CC) -o pam_conv1 $(CFLAGS) pam_conv.tab.c $(LINK_LIBLEX) pam_conv.tab.c: pam_conv.y lex.yy.c bison pam_conv.y diff --git a/Linux-PAM/conf/pam_conv1/README b/Linux-PAM/conf/pam_conv1/README index 3a750d73..7a09df38 100644 --- a/Linux-PAM/conf/pam_conv1/README +++ b/Linux-PAM/conf/pam_conv1/README @@ -1,4 +1,4 @@ -$Id: README,v 1.1.1.1 2001/04/29 04:16:26 hartmans Exp $ +$Id: README,v 1.1.1.1 2000/06/20 22:10:45 agmorgan Exp $ This directory contains a untility to convert pam.conf files to a pam.d/ tree. The conversion program takes pam.conf from the standard input and diff --git a/Linux-PAM/conf/pam_conv1/pam_conv.lex b/Linux-PAM/conf/pam_conv1/pam_conv.lex index addc60ae..ef8cb41a 100644 --- a/Linux-PAM/conf/pam_conv1/pam_conv.lex +++ b/Linux-PAM/conf/pam_conv1/pam_conv.lex @@ -1,7 +1,7 @@ %{ /* - * $Id: pam_conv.lex,v 1.1.1.1 2001/04/29 04:16:26 hartmans Exp $ + * $Id: pam_conv.lex,v 1.1.1.1 2000/06/20 22:10:45 agmorgan Exp $ * * Copyright (c) Andrew G. Morgan 1997 <morgan@parc.power.net> * @@ -10,7 +10,7 @@ */ const static char lexid[]= - "$Id: pam_conv.lex,v 1.1.1.1 2001/04/29 04:16:26 hartmans Exp $\n" + "$Id: pam_conv.lex,v 1.1.1.1 2000/06/20 22:10:45 agmorgan Exp $\n" "Copyright (c) Andrew G. Morgan 1997 <morgan@parc.power.net>\n"; extern int current_line; diff --git a/Linux-PAM/conf/pam_conv1/pam_conv.y b/Linux-PAM/conf/pam_conv1/pam_conv.y index 0cbfa5f8..ef712e78 100644 --- a/Linux-PAM/conf/pam_conv1/pam_conv.y +++ b/Linux-PAM/conf/pam_conv1/pam_conv.y @@ -1,7 +1,7 @@ %{ /* - * $Id: pam_conv.y,v 1.1.1.2 2002/09/15 20:08:22 hartmans Exp $ + * $Id: pam_conv.y,v 1.2 2002/05/29 06:35:46 agmorgan Exp $ * * Copyright (c) Andrew G. Morgan 1997 <morgan@parc.power.net> * @@ -10,7 +10,7 @@ */ const static char bisonid[]= - "$Id: pam_conv.y,v 1.1.1.2 2002/09/15 20:08:22 hartmans Exp $\n" + "$Id: pam_conv.y,v 1.2 2002/05/29 06:35:46 agmorgan Exp $\n" "Copyright (c) Andrew G. Morgan 1997-8 <morgan@linux.kernel.org>\n"; #include <string.h> |