Date: Thu, 7 Nov 2013 10:36:25 +0000 (UTC) From: Devin Teske <dteske@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r257787 - head/usr.sbin/bsdconfig/share/media Message-ID: <201311071036.rA7AaPlo032766@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dteske Date: Thu Nov 7 10:36:24 2013 New Revision: 257787 URL: http://svnweb.freebsd.org/changeset/base/257787 Log: Fix a silly bug that would result in attempting to fetch (literally) the URI "httpDirectory" (oops). Modified: head/usr.sbin/bsdconfig/share/media/http.subr Modified: head/usr.sbin/bsdconfig/share/media/http.subr ============================================================================== --- head/usr.sbin/bsdconfig/share/media/http.subr Thu Nov 7 10:32:37 2013 (r257786) +++ head/usr.sbin/bsdconfig/share/media/http.subr Thu Nov 7 10:36:24 2013 (r257787) @@ -481,7 +481,7 @@ f_media_init_http() case "$rel" in __RELEASE|any) - setvar $VAR_HTTP_PATH "$VAR_HTTP_DIR" + f_getvar $VAR_HTTP_DIR $VAR_HTTP_PATH f_http_check_access http_found=$? ;;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311071036.rA7AaPlo032766>