PERFORCE change 111099 for review

soc-andrew soc-andrew at FreeBSD.org
Mon Dec 4 18:46:26 PST 2006


http://perforce.freebsd.org/chv.cgi?CH=111099

Change 111099 by soc-andrew at soc-andrew_serv on 2006/12/05 02:45:39

	Fix a bug in the fetch library where the step table was not defined

Affected files ...

.. //depot/projects/soc2005/bsdinstaller/src/libexec/bsdinstaller/lib/Fetch.lua#2 edit

Differences ...

==== //depot/projects/soc2005/bsdinstaller/src/libexec/bsdinstaller/lib/Fetch.lua#2 (text+ko) ====

@@ -277,7 +277,7 @@
 	return tab
 end
 
-Fetch.find_method = function(self)
+Fetch.find_method = function(self, prev_name)
 	local actions = {}
 
 	local process = function(key, value)
@@ -289,7 +289,7 @@
 	-- Create the actions table for the UI
 	table.foreach(dist_methods, process)
 	table.insert(actions, { id = "cancel", accelerator = "ESC",
-	    name = _("Return to %s", step:get_prev_name()) } )
+	    name = _("Return to %s", prev_name) } )
 
 	local responce = App.ui:present{
 		id = "select_dist_location",


More information about the p4-projects mailing list