1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-20 11:11:24 +00:00

handle a message box which can potentially go past 80 cols.

This commit is contained in:
Jordan K. Hubbard 1996-06-12 07:03:44 +00:00
parent 419702a468
commit 7c8d89b09b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=16325
2 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
* $Id: dist.c,v 1.55 1996/05/29 01:35:26 jkh Exp $
* $Id: dist.c,v 1.56 1996/05/29 03:27:31 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -459,7 +459,7 @@ distExtract(char *parent, Distribution *me)
status = TRUE;
}
else {
status = msgYesNo("Unable to transfer the %s distribution from %s.\n"
status = msgYesNo("Unable to transfer the %s distribution from\n%s.\n\n"
"Do you want to try to retrieve it again?",
me[i].my_name, mediaDevice->name);
}

View File

@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
* $Id: dist.c,v 1.55 1996/05/29 01:35:26 jkh Exp $
* $Id: dist.c,v 1.56 1996/05/29 03:27:31 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -459,7 +459,7 @@ distExtract(char *parent, Distribution *me)
status = TRUE;
}
else {
status = msgYesNo("Unable to transfer the %s distribution from %s.\n"
status = msgYesNo("Unable to transfer the %s distribution from\n%s.\n\n"
"Do you want to try to retrieve it again?",
me[i].my_name, mediaDevice->name);
}