Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 2 Aug 2005 05:18:48 GMT
From:      soc-andrew <soc-andrew@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 81324 for review
Message-ID:  <200508020518.j725ImIC059060@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=81324

Change 81324 by soc-andrew@soc-andrew_serv on 2005/08/02 05:17:59

	Display moreexit to the shell messages when needed

Affected files ...

.. //depot/projects/soc2005/bsdinstaller/src/contrib/bsdinstaller/backend/installer/flow.c#5 edit

Differences ...

==== //depot/projects/soc2005/bsdinstaller/src/contrib/bsdinstaller/backend/installer/flow.c#5 (text+ko) ====

@@ -562,7 +562,7 @@
 	else if (strcmp(dfui_response_get_action_id(r), "diskutil") == 0)
 		state = state_diskutil_menu;
 	else if (strcmp(dfui_response_get_action_id(r), "livecd") == 0)
-		state = NULL;
+		state = state_exit_live_cd;
 	else if (strcmp(dfui_response_get_action_id(r), "reboot") == 0)
 		state = state_reboot;
 	else if (strcmp(dfui_response_get_action_id(r), "cancel") == 0)
@@ -925,7 +925,7 @@
 		}
 		state = state_select_disk;
 	} else if (strcmp(dfui_response_get_action_id(r), "livecd") == 0) {
-		state = NULL;
+		state = state_exit_live_cd;
 	} else if (strcmp(dfui_response_get_action_id(r), "cancel") == 0) {
 		state = state_welcome;
 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200508020518.j725ImIC059060>