- Improved status output.
This commit is contained in:
parent
71c658051e
commit
8f501b1620
18
src/main.c
18
src/main.c
@ -556,6 +556,12 @@ main (int argc, char **argv)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* ---------------------------------------
|
||||||
|
* After checking the system, results
|
||||||
|
* ---------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
/* Display shortest attack, if any */
|
/* Display shortest attack, if any */
|
||||||
|
|
||||||
if (sys->attack != NULL && sys->attack->length != 0)
|
if (sys->attack != NULL && sys->attack->length != 0)
|
||||||
@ -711,18 +717,20 @@ timersPrint (const System sys)
|
|||||||
anyclaims = 1;
|
anyclaims = 1;
|
||||||
|
|
||||||
eprintf ("claim\t");
|
eprintf ("claim\t");
|
||||||
termPrint (cl_scan->rolename);
|
termPrint (cl_scan->type);
|
||||||
eprintf (":");
|
|
||||||
termPrint (cl_scan->label);
|
|
||||||
eprintf ("\t");
|
eprintf ("\t");
|
||||||
|
termPrint (cl_scan->rolename);
|
||||||
|
eprintf (" (");
|
||||||
|
termPrint (cl_scan->label);
|
||||||
|
eprintf (")\tfound:\t");
|
||||||
statesFormat (cl_scan->count);
|
statesFormat (cl_scan->count);
|
||||||
if (cl_scan->count > 0)
|
if (cl_scan->count > 0)
|
||||||
{
|
{
|
||||||
eprintf ("\t");
|
|
||||||
if (cl_scan->failed > 0)
|
if (cl_scan->failed > 0)
|
||||||
{
|
{
|
||||||
|
eprintf ("\t");
|
||||||
|
eprintf ("failed:\t");
|
||||||
statesFormat (cl_scan->failed);
|
statesFormat (cl_scan->failed);
|
||||||
eprintf (" failed");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
eprintf ("\n");
|
eprintf ("\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user