[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

lintian: r701 - in trunk: checks debian



Author: rra
Date: 2006-07-16 03:49:49 +0200 (Sun, 16 Jul 2006)
New Revision: 701

Modified:
   trunk/checks/scripts
   trunk/debian/changelog
Log:
* checks/scripts:
  + [RA] Except mkstemp from possibly-insecure-handling-of-tmp-files for
    maintainer scripts written in Perl.

Modified: trunk/checks/scripts
===================================================================
--- trunk/checks/scripts	2006-07-15 06:43:16 UTC (rev 700)
+++ trunk/checks/scripts	2006-07-16 01:49:49 UTC (rev 701)
@@ -444,7 +444,7 @@
 	next if m,^\s*\#,; # skip comment lines
 	s/\#.*$//;         # eat comments
 	chomp();
-	if (m,[^\w=](/var)?/tmp\b, and not m/\bmktemp\b/ and not m/\btempfile\b/ and not m/\bmkdir\b/) {
+	if (m,[^\w=](/var)?/tmp\b, and not m/\bmktemp\b/ and not m/\btempfile\b/ and not m/\bmkdir\b/ and not m/\bmkstemp\b/) {
 	    tag "possibly-insecure-handling-of-tmp-files-in-maintainer-script", "$file:$."
 		unless $warned{tmp};
 	    $warned{tmp} = 1;

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2006-07-15 06:43:16 UTC (rev 700)
+++ trunk/debian/changelog	2006-07-16 01:49:49 UTC (rev 701)
@@ -16,6 +16,9 @@
       surrounded by word boundaries.
     + [RA] Warn if the changelog incorrectly indicates an NMU.  Thanks to
       George Danchev for the report.
+  * checks/scripts:
+    + [RA] Except mkstemp from possibly-insecure-handling-of-tmp-files for
+      maintainer scripts written in Perl.
 
   * lib/Tags.pm:
     + [RA] If a tag has been overriden via any mechanism, do not add it to
@@ -26,7 +29,7 @@
       therefore cause lintian to exit with non-zero status.  Thanks,
       Andree Leidenfrost and Martin F. Krafft.  (Closes: #377182, #374314)
 
- -- Russ Allbery <rra@debian.org>  Fri, 14 Jul 2006 23:41:45 -0700
+ -- Russ Allbery <rra@debian.org>  Sat, 15 Jul 2006 18:49:37 -0700
 
 lintian (1.23.22) unstable; urgency=low
 



Reply to: