svn commit: r247267 - stable/9/usr.sbin/sysinstall

Devin Teske dteske at FreeBSD.org
Mon Feb 25 16:13:22 UTC 2013


Author: dteske
Date: Mon Feb 25 16:13:21 2013
New Revision: 247267
URL: http://svnweb.freebsd.org/changeset/base/247267

Log:
  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).
  Direct commit to stable/9 (no sysinstall in head).

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

Modified: stable/9/usr.sbin/sysinstall/options.c
==============================================================================
--- stable/9/usr.sbin/sysinstall/options.c	Mon Feb 25 14:06:24 2013	(r247266)
+++ stable/9/usr.sbin/sysinstall/options.c	Mon Feb 25 16:13:21 2013	(r247267)
@@ -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-all mailing list