Send inn-committers mailing list submissions to
        inn-committers@lists.isc.org

To subscribe or unsubscribe via the World Wide Web, visit
        https://lists.isc.org/mailman/listinfo/inn-committers
or, via email, send a message with subject or body 'help' to
        inn-committers-requ...@lists.isc.org

You can reach the person managing the list at
        inn-committers-ow...@lists.isc.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of inn-committers digest..."


Today's Topics:

   1. INN commit: trunk (CONTRIBUTORS doc/pod/news.pod
      scripts/inncheck.in) (INN Commit)
   2. INN commit: branches/2.5 (3 files) (INN Commit)


----------------------------------------------------------------------

Message: 1
Date: Mon, 24 Jun 2013 11:35:47 -0700 (PDT)
From: INN Commit <r...@isc.org>
To: inn-committ...@isc.org
Subject: INN commit: trunk (CONTRIBUTORS doc/pod/news.pod
        scripts/inncheck.in)
Message-ID: <20130624183547.3102a67...@hope.eyrie.org>

    Date: Monday, June 24, 2013 @ 11:35:45
  Author: iulius
Revision: 9490

fix a Perl warning in inncheck

defined(@array) has been deprecated since Perl 5.16.

Thanks to Remco Rijnders for the report.

Modified:
  trunk/CONTRIBUTORS
  trunk/doc/pod/news.pod
  trunk/scripts/inncheck.in

---------------------+
 CONTRIBUTORS        |    2 +-
 doc/pod/news.pod    |    5 +++++
 scripts/inncheck.in |    2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

Modified: CONTRIBUTORS
===================================================================
--- CONTRIBUTORS        2013-06-12 18:37:33 UTC (rev 9489)
+++ CONTRIBUTORS        2013-06-24 18:35:45 UTC (rev 9490)
@@ -275,4 +275,4 @@
 Lars Magne Ingebrigtsen, Sam Varshavchik, Matthew Vernon, Ian Jackson,
 Edmund H. Ramm, Raphael Barrois, Bo Lindbergh, Matthias Meyser,
 Dennis Preiser, Paolo Amoroso, Dennis Davis, River Tarnell, Jochen Schmitt,
-Tim Fardell
+Tim Fardell, Remco Rijnders

Modified: doc/pod/news.pod
===================================================================
--- doc/pod/news.pod    2013-06-12 18:37:33 UTC (rev 9489)
+++ doc/pod/news.pod    2013-06-24 18:35:45 UTC (rev 9490)
@@ -152,6 +152,11 @@
 
 =item *
 
+Fix a Perl warning in B<inncheck>; using C<defined(@array)> has been
+deprecated since S<Perl 5.16>.
+
+=item *
+
 Fixed the occurrence of an unexpected C<cant select> error generated by
 B<innd>.  Thanks to Paul Tomblin for having caught that long-standing
 issue.

Modified: scripts/inncheck.in
===================================================================
--- scripts/inncheck.in 2013-06-12 18:37:33 UTC (rev 9489)
+++ scripts/inncheck.in 2013-06-24 18:35:45 UTC (rev 9490)
@@ -1030,7 +1030,7 @@
     die "Internal error, undefined name in perm from ", (caller(0))[2], "\n"
        if !defined $f;
     die "Internal error, undefined mode in perm from ", (caller(0))[2], "\n"
-       if !defined @$m;
+       unless (@$m);
 
     if ( ! -e $f ) {
        eprint "$pfx$f:0: missing\n";



------------------------------

Message: 2
Date: Mon, 24 Jun 2013 11:36:25 -0700 (PDT)
From: INN Commit <r...@isc.org>
To: inn-committ...@isc.org
Subject: INN commit: branches/2.5 (3 files)
Message-ID: <20130624183625.b2f8467...@hope.eyrie.org>

    Date: Monday, June 24, 2013 @ 11:36:24
  Author: iulius
Revision: 9491

fix a Perl warning in inncheck

defined(@array) has been deprecated since Perl 5.16.

Thanks to Remco Rijnders for the report.

Modified:
  branches/2.5/CONTRIBUTORS
  branches/2.5/doc/pod/news.pod
  branches/2.5/scripts/inncheck.in

---------------------+
 CONTRIBUTORS        |    2 +-
 doc/pod/news.pod    |    5 +++++
 scripts/inncheck.in |    2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

Modified: CONTRIBUTORS
===================================================================
--- CONTRIBUTORS        2013-06-24 18:35:45 UTC (rev 9490)
+++ CONTRIBUTORS        2013-06-24 18:36:24 UTC (rev 9491)
@@ -275,4 +275,4 @@
 Lars Magne Ingebrigtsen, Sam Varshavchik, Matthew Vernon, Ian Jackson,
 Edmund H. Ramm, Raphael Barrois, Bo Lindbergh, Matthias Meyser,
 Dennis Preiser, Paolo Amoroso, Dennis Davis, River Tarnell, Jochen Schmitt,
-Tim Fardell
+Tim Fardell, Remco Rijnders

Modified: doc/pod/news.pod
===================================================================
--- doc/pod/news.pod    2013-06-24 18:35:45 UTC (rev 9490)
+++ doc/pod/news.pod    2013-06-24 18:36:24 UTC (rev 9491)
@@ -33,6 +33,11 @@
 
 =item *
 
+Fix a Perl warning in B<inncheck>; using C<defined(@array)> has been
+deprecated since S<Perl 5.16>.
+
+=item *
+
 Fixed the occurrence of an unexpected C<cant select> error generated by
 B<innd>.  Thanks to Paul Tomblin for having caught that long-standing
 issue.

Modified: scripts/inncheck.in
===================================================================
--- scripts/inncheck.in 2013-06-24 18:35:45 UTC (rev 9490)
+++ scripts/inncheck.in 2013-06-24 18:36:24 UTC (rev 9491)
@@ -1030,7 +1030,7 @@
     die "Internal error, undefined name in perm from ", (caller(0))[2], "\n"
        if !defined $f;
     die "Internal error, undefined mode in perm from ", (caller(0))[2], "\n"
-       if !defined @$m;
+       unless (@$m);
 
     if ( ! -e $f ) {
        eprint "$pfx$f:0: missing\n";



------------------------------

_______________________________________________
inn-committers mailing list
inn-committers@lists.isc.org
https://lists.isc.org/mailman/listinfo/inn-committers

End of inn-committers Digest, Vol 52, Issue 5
*********************************************

Reply via email to