Author: dteske
Date: Fri Jun 20 17:40:38 2014
New Revision: 267680
URL: http://svnweb.freebsd.org/changeset/base/267680

Log:
  Fix a code typo that prevented mkdir from firing (unnoticed
  usually because another part of the code succeeded in making
  the same directory).
  
  MFC after:      3 days

Modified:
  head/usr.sbin/bsdconfig/share/packages/index.subr

Modified: head/usr.sbin/bsdconfig/share/packages/index.subr
==============================================================================
--- head/usr.sbin/bsdconfig/share/packages/index.subr   Fri Jun 20 17:14:59 
2014        (r267679)
+++ head/usr.sbin/bsdconfig/share/packages/index.subr   Fri Jun 20 17:40:38 
2014        (r267680)
@@ -258,7 +258,7 @@ f_index_initialize()
 
                # Finally, move the temporary file into place
                case "$PACKAGES_INDEX_CACHEFILE" in
-               */*) f_eval_catch -d $funcname mkdir \
+               */*) f_eval_catch -d $__funcname mkdir \
                        'mkdir -p "%s"' "${PACKAGES_INDEX_CACHEFILE%/*}"
                esac
                f_eval_catch -d $__funcname mv 'mv -f "%s" "%s"' \
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to