svn commit: r247700 - stable/8/usr.sbin/sysinstall

Devin Teske dteske at FreeBSD.org
Sun Mar 3 09:13:19 UTC 2013


Author: dteske
Date: Sun Mar  3 09:13:18 2013
New Revision: 247700
URL: http://svnweb.freebsd.org/changeset/base/247700

Log:
  MFS 9->8 r247267:
  
  Oops, r55392 (over 13 years ago) forgot to classify the new HTTP Proxy for the
  options dialog (causing "<unknown>" to be displayed for the HTTP media type).

Modified:
  stable/8/usr.sbin/sysinstall/options.c

Modified: stable/8/usr.sbin/sysinstall/options.c
==============================================================================
--- stable/8/usr.sbin/sysinstall/options.c	Sun Mar  3 09:13:17 2013	(r247699)
+++ stable/8/usr.sbin/sysinstall/options.c	Sun Mar  3 09:13:18 2013	(r247700)
@@ -75,6 +75,9 @@ mediaCheck(Option *opt)
 	case DEVICE_TYPE_FTP:
 	    return "FTP";
 
+	case DEVICE_TYPE_HTTP:
+	    return "HTTP Proxy";
+
 	case DEVICE_TYPE_CDROM:
 	    return "CDROM";
 


More information about the svn-src-stable-8 mailing list