Removed tabs from the front of XXU: messages to make it fit the other

messages closer.  Added missing new line to the message about to many
scsi cd drives.
This commit is contained in:
Rodney W. Grimes 1993-08-06 12:11:52 +00:00
parent 2ea3f75bd2
commit 903a4691a3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=245
3 changed files with 9 additions and 9 deletions

View File

@ -13,7 +13,7 @@
* functioning of this software in any circumstances.
*
*/
static char rev[] = "$Revision: 1.3 $";
static char rev[] = "$Revision: 1.2 $";
/*
* Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992
@ -126,7 +126,7 @@ struct scsi_switch *scsi_switch;
\*******************************************************/
if( unit >= NCD)
{
printf("Too many scsi CDs..(%d > %d) reconfigure kernel",(unit + 1),NCD);
printf("Too many scsi CDs..(%d > %d) reconfigure kernel\n",(unit + 1),NCD);
return(0);
}
/*******************************************************\

View File

@ -14,7 +14,7 @@
*
*/
static char rev[] = "$Revision: 1.3 $";
static char rev[] = "$Revision: 1.2 $";
/*
* Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992
@ -174,7 +174,7 @@ struct scsi_switch *scsi_switch;
* request must specify this. *
\*******************************************************/
sd_get_parms(unit, SCSI_NOSLEEP | SCSI_NOMASK);
printf(" sd%d: %dMB, cyls %d, heads %d, secs %d, bytes/sec %d\n",
printf("sd%d: %dMB, cyls %d, heads %d, secs %d, bytes/sec %d\n",
unit,
( dp->cyls
* dp->heads

View File

@ -240,17 +240,17 @@ struct scsi_switch *scsi_switch;
{
if(st_test_ready(unit,SCSI_NOSLEEP | SCSI_NOMASK | SCSI_SILENT))
{
printf("\tst%d: tape present: %d blocks of %d bytes\n",
printf("st%d: tape present: %d blocks of %d bytes\n",
unit, st->numblks, st->media_blksiz);
}
else
{
printf("\tst%d: drive empty\n", unit);
printf("st%d: drive empty\n", unit);
}
}
else
{
printf("\tst%d: drive offline\n", unit);
printf("st%d: drive offline\n", unit);
}
/*******************************************************\
* Set up the bufs for this device *
@ -301,7 +301,7 @@ int unit;
if (scsi_inquire(st->ctlr, st->targ, st->lu, st->sc_sw, &inqbuf,
SCSI_NOSLEEP | SCSI_NOMASK | SCSI_SILENT) != COMPLETE)
{
printf(" st%d: couldn't get device type, using default\n", unit);
printf("st%d: couldn't get device type, using default\n", unit);
return;
}
if(inqbuf.ansii_version == 0)
@ -339,7 +339,7 @@ int unit;
if ((strcmp(manu, finger->manu) == 0 )
&& (strcmp(model2, finger->model) == 0 ))
{
printf(" st%d: %s is a known rogue\n", unit,finger->name);
printf("st%d: %s is a known rogue\n", unit,finger->name);
st->modes[0] = finger->modes[0];
st->modes[1] = finger->modes[1];
st->modes[2] = finger->modes[2];