1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-11 14:10:34 +00:00

Make wizard mode get out of raw mode first before going interactive with

the user.

Submitted by:	Cyrille Lefevre <clefevre@citeweb.net>
PR:		bin/24061
This commit is contained in:
Jordan K. Hubbard 2001-03-23 08:26:43 +00:00
parent 03035079c0
commit 4f2348e52e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=74677
2 changed files with 4 additions and 0 deletions

View File

@ -70,6 +70,7 @@ slice_wizard(Disk *d)
char **cp,*cmds[200];
int ncmd,i;
systemSuspendDialog();
sprintf(myprompt,"%s> ", d->name);
while(1) {
printf("--==##==--\n");
@ -197,4 +198,5 @@ slice_wizard(Disk *d)
printf("\n");
}
systemResumeDialog();
}

View File

@ -70,6 +70,7 @@ slice_wizard(Disk *d)
char **cp,*cmds[200];
int ncmd,i;
systemSuspendDialog();
sprintf(myprompt,"%s> ", d->name);
while(1) {
printf("--==##==--\n");
@ -197,4 +198,5 @@ slice_wizard(Disk *d)
printf("\n");
}
systemResumeDialog();
}