svn commit: r54088 - head/en_US.ISO8859-1/books/porters-handbook/security

Lorenzo Salvadore salvadore at FreeBSD.org
Fri May 1 11:57:44 UTC 2020


Author: salvadore (ports committer)
Date: Fri May  1 11:57:43 2020
New Revision: 54088
URL: https://svnweb.freebsd.org/changeset/doc/54088

Log:
  books/porters-handbook: Fix mistake in vuln.xml description
  
  The example for vuln.xml contains the line
  <range><ge>1.6</ge><lt>1.9</lt></range> which is explained as describing
  the interval 1.6 <= x <= 1.9, but is 1.6 <= x < 1.9 instead as is
  suggested by:
  - the <ge> and <lt> tags;
  - the output of pkg audit, which for the example would contain the line
  >= 1.6: < 1.9.
  
  Reviewed by:	mat, crees
  Approved by:	mat, bcr (docs), gerald (mentor)
  Differential Revision:	https://reviews.freebsd.org/D24381

Modified:
  head/en_US.ISO8859-1/books/porters-handbook/security/chapter.xml

Modified: head/en_US.ISO8859-1/books/porters-handbook/security/chapter.xml
==============================================================================
--- head/en_US.ISO8859-1/books/porters-handbook/security/chapter.xml	Fri May  1 10:15:03 2020	(r54087)
+++ head/en_US.ISO8859-1/books/porters-handbook/security/chapter.xml	Fri May  1 11:57:43 2020	(r54088)
@@ -288,8 +288,8 @@
 	    and matches <literal>3.b</literal>.</para>
 
 	  <para>The above example specifies that affected are versions
-	    from <literal>1.6</literal> to <literal>1.9</literal>
-	    inclusive, versions <literal>2.x</literal> before
+	    <literal>1.6</literal> and up to but not including
+	    <literal>1.9</literal>, versions <literal>2.x</literal> before
 	    <literal>2.4_1</literal>, and version
 	    <literal>3.0b1</literal>.</para>
 	</callout>


More information about the svn-doc-all mailing list