Author: dteske
Date: Wed Jul  2 19:25:49 2014
New Revision: 268171
URL: http://svnweb.freebsd.org/changeset/base/268171

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

Modified:
  stable/9/usr.sbin/bsdconfig/share/packages/index.subr
Directory Properties:
  stable/9/usr.sbin/bsdconfig/   (props changed)

Modified: stable/9/usr.sbin/bsdconfig/share/packages/index.subr
==============================================================================
--- stable/9/usr.sbin/bsdconfig/share/packages/index.subr       Wed Jul  2 
19:25:25 2014        (r268170)
+++ stable/9/usr.sbin/bsdconfig/share/packages/index.subr       Wed Jul  2 
19:25:49 2014        (r268171)
@@ -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-stable-9@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-stable-9
To unsubscribe, send any mail to "svn-src-stable-9-unsubscr...@freebsd.org"

Reply via email to