svn commit: r336585 - head/share/misc

Mateusz Piotrowski 0mp at FreeBSD.org
Sat Jul 21 19:16:39 UTC 2018


Author: 0mp (ports committer)
Date: Sat Jul 21 19:16:38 2018
New Revision: 336585
URL: https://svnweb.freebsd.org/changeset/base/336585

Log:
  Use the correct DOT language syntax for an ID with a leading digit (0mp).
  
  It turns out that my username (0mp) is not a valid ID in the DOT language
  because it starts with a digit. The easiest way to fix it is to put my
  username in double quotes.
  
  Reported by:	pstef
  Reviewed by:	krion (mentor)
  Approved by:	krion (mentor)
  Differential Revision:	https://reviews.freebsd.org/D16372

Modified:
  head/share/misc/committers-ports.dot

Modified: head/share/misc/committers-ports.dot
==============================================================================
--- head/share/misc/committers-ports.dot	Sat Jul 21 19:09:29 2018	(r336584)
+++ head/share/misc/committers-ports.dot	Sat Jul 21 19:16:38 2018	(r336585)
@@ -40,7 +40,7 @@ node [color=lightblue2, style=filled, bgcolor=black];
 
 # Current ports committers go here. Try to keep things sorted.
 
-0mp [label="Mateusz Piotrowski\n0mp at FreeBSD.org\n2018/06/16"]
+"0mp" [label="Mateusz Piotrowski\n0mp at FreeBSD.org\n2018/06/16"]
 ache [label="Andrey Chernov\nache at FreeBSD.org\n1994/11/15"]
 acm [label="Jose Alonso Cardenas Marquez\nacm at FreeBSD.org\n2006/07/18"]
 adamw [label="Adam Weinberger\nadamw at FreeBSD.org\n2002/10/16"]
@@ -481,7 +481,7 @@ koobs -> kami
 koobs -> woodsb02
 koobs -> xmj
 
-krion -> 0mp
+krion -> "0mp"
 krion -> brooks
 krion -> miwi
 krion -> novel
@@ -527,7 +527,7 @@ makc -> bf
 makc -> jhale
 makc -> rakuco
 
-mat -> 0mp
+mat -> "0mp"
 mat -> bmah
 mat -> dteske
 mat -> dvl


More information about the svn-src-head mailing list