mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Debug flags -T and -S were reversed.
This commit is contained in:
parent
256d3d1de0
commit
ee5c2be765
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue