svn commit: r43823 - head/en_US.ISO8859-1/htdocs/cgi

Glen Barber gjb at FreeBSD.org
Fri Feb 7 19:28:00 UTC 2014


Author: gjb
Date: Fri Feb  7 19:27:59 2014
New Revision: 43823
URL: http://svnweb.freebsd.org/changeset/doc/43823

Log:
  open2.pl is deprecated, so use IPC::Open2 instead.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/en_US.ISO8859-1/htdocs/cgi/search.cgi

Modified: head/en_US.ISO8859-1/htdocs/cgi/search.cgi
==============================================================================
--- head/en_US.ISO8859-1/htdocs/cgi/search.cgi	Fri Feb  7 12:48:40 2014	(r43822)
+++ head/en_US.ISO8859-1/htdocs/cgi/search.cgi	Fri Feb  7 19:27:59 2014	(r43823)
@@ -26,7 +26,7 @@ $searchpage = '/search/search.html';   
 $myurl = $ENV{'SCRIPT_NAME'};
 $ENV{PATH} = "/bin:/usr/bin:/usr/local/bin";
 
-require "open2.pl";
+use IPC::Open2 'open2';
 require "./cgi-lib.pl";
 require "./cgi-style.pl";
 


More information about the svn-doc-all mailing list