svn commit: r264740 - head/usr.sbin/portsnap/portsnap

Xin LI delphij at FreeBSD.org
Mon Apr 21 19:33:27 UTC 2014


Author: delphij
Date: Mon Apr 21 19:33:27 2014
New Revision: 264740
URL: http://svnweb.freebsd.org/changeset/base/264740

Log:
  Use case insensitive match in portsnap.
  
  PR:		bin/186510
  Submitted by:	olli
  MFC after:	2 weeks

Modified:
  head/usr.sbin/portsnap/portsnap/portsnap.sh

Modified: head/usr.sbin/portsnap/portsnap/portsnap.sh
==============================================================================
--- head/usr.sbin/portsnap/portsnap/portsnap.sh	Mon Apr 21 19:17:19 2014	(r264739)
+++ head/usr.sbin/portsnap/portsnap/portsnap.sh	Mon Apr 21 19:33:27 2014	(r264740)
@@ -367,7 +367,7 @@ fetch_pick_server_init() {
 # "$name server selection ..."; we allow either format.
 	MLIST="_http._tcp.${SERVERNAME}"
 	host -t srv "${MLIST}" |
-	    sed -nE "s/${MLIST} (has SRV record|server selection) //p" |
+	    sed -nE "s/${MLIST} (has SRV record|server selection) //Ip" |
 	    cut -f 1,2,4 -d ' ' |
 	    sed -e 's/\.$//' |
 	    sort > serverlist_full


More information about the svn-src-all mailing list