Index: ossp-pkg/shiela/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/shiela/ChangeLog,v rcsdiff -q -kk '-r1.46' '-r1.47' -u '/v/ossp/cvs/ossp-pkg/shiela/ChangeLog,v' 2>/dev/null --- ChangeLog 2004/05/10 17:57:48 1.46 +++ ChangeLog 2004/05/10 18:01:03 1.47 @@ -15,6 +15,9 @@ lines in case of added files. [Ralf S. Engelschall] + *) Fixed two more warnings about undefined variables. + [Ralf S. Engelschall, Michael Schloh von Bennewitz] + Changes between 1.1.0 and 1.1.1 (07-May-2002 to 10-May-2004): *) Workaround a syntax problem under Solaris /bin/sh. Index: ossp-pkg/shiela/THANKS RCS File: /v/ossp/cvs/ossp-pkg/shiela/THANKS,v rcsdiff -q -kk '-r1.4' '-r1.5' -u '/v/ossp/cvs/ossp-pkg/shiela/THANKS,v' 2>/dev/null --- THANKS 2004/05/05 13:18:47 1.4 +++ THANKS 2004/05/10 18:01:03 1.5 @@ -12,9 +12,10 @@ Credit has to be given to the following people who contributed ideas, stuff, bugfixes, hints etc. (in alphabetical order): - o Denis Barbier - o Markus Sander - o Christoph Schug + o Denis Barbier + o Markus Sander + o Michael Schloh v. Bennewitz + o Christoph Schug ...and all other OSSP shiela users who gave me feedback but I've forgot. Index: ossp-pkg/shiela/shiela.pl RCS File: /v/ossp/cvs/ossp-pkg/shiela/shiela.pl,v rcsdiff -q -kk '-r1.58' '-r1.59' -u '/v/ossp/cvs/ossp-pkg/shiela/shiela.pl,v' 2>/dev/null --- shiela.pl 2004/05/10 17:57:48 1.58 +++ shiela.pl 2004/05/10 18:01:03 1.59 @@ -1440,7 +1440,7 @@ $RT->{cvsop} = 'commit-file'; # handle special invocation under `cvs add ' - if ($PA->{ARG}->[1] eq '- New directory') { # see CVS' src/add.c + if (defined($PA->{ARG}->[1]) and $PA->{ARG}->[1] eq '- New directory') { # see CVS' src/add.c # Hmmm... we always just deal with files in OSSP shiela, so there # is no obvious and consistent way to deal now with only a # plain directory. And there is also no log message provided @@ -1456,7 +1456,7 @@ # CVS only calls us inside the loginfo hook and never in the # commitinfo hook before. Additionally CVS doesn't provide us with # the %{sVvto} information :( - if ($PA->{ARG}->[1] eq '- Imported sources') { # see CVS' src/import.c + if (defined($PA->{ARG}->[1]) and $PA->{ARG}->[1] eq '- Imported sources') { # see CVS' src/import.c # I = ignored # L = link (=error), # N = new file