Debug flags -T and -S were reversed.

This commit is contained in:
Luoqi Chen 1999-10-26 20:21:35 +00:00
parent 256d3d1de0
commit ee5c2be765
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=52535

View File

@ -1798,11 +1798,11 @@ camdebug(int argc, char **argv, char *combinedopt)
arglist |= CAM_ARG_DEBUG_INFO;
ccb.cdbg.flags |= CAM_DEBUG_INFO;
break;
case 'S':
case 'T':
arglist |= CAM_ARG_DEBUG_TRACE;
ccb.cdbg.flags |= CAM_DEBUG_TRACE;
break;
case 'T':
case 'S':
arglist |= CAM_ARG_DEBUG_SUBTRACE;
ccb.cdbg.flags |= CAM_DEBUG_SUBTRACE;
break;