In camperiphscsisenseerror(), don't return an error when the error action

is SS_NOP.

Submitted by:	joerg
This commit is contained in:
Kenneth D. Merry 2001-04-30 21:02:57 +00:00
parent 1561f90e65
commit 00e54d14f6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=76158

View File

@ -1369,6 +1369,9 @@ camperiphscsisenseerror(union ccb *ccb, cam_flags camflags,
switch (err_action & SS_MASK) {
case SS_NOP:
action_string = "No Recovery Action Needed";
error = 0;
break;
case SS_RETRY:
action_string = "Retrying Command";
error = ERESTART;