This repository was archived by the owner on Sep 27, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -97,8 +97,10 @@ void Application::processCLI(QStringList& args)
97
97
}
98
98
99
99
QStringList posArguments = parser.positionalArguments ();
100
- if (posArguments.isEmpty ()) {
101
- if (parser.isSet (tailoring)) {
100
+ if (posArguments.isEmpty ())
101
+ {
102
+ if (parser.isSet (tailoring))
103
+ {
102
104
std::cout << " Tailoring file was provided via --tailoring, but no SCAP "
103
105
<< " input was provided. Ignoring the tailoring file."
104
106
<< std::endl;
Original file line number Diff line number Diff line change @@ -415,7 +415,8 @@ QString OscapScannerRemoteSsh::createRemoteTemporaryFile(bool cancelOnFailure)
415
415
" data to! Diagnostic info: %1" ).arg (proc.getDiagnosticInfo ())
416
416
);
417
417
418
- if (cancelOnFailure) {
418
+ if (cancelOnFailure)
419
+ {
419
420
mCancelRequested = true ;
420
421
}
421
422
signalCompletion (mCancelRequested );
@@ -443,7 +444,8 @@ QString OscapScannerRemoteSsh::createRemoteTemporaryDirectory(bool cancelOnFailu
443
444
" Diagnostic info: %1" ).arg (proc.getDiagnosticInfo ())
444
445
);
445
446
446
- if (cancelOnFailure) {
447
+ if (cancelOnFailure)
448
+ {
447
449
mCancelRequested = true ;
448
450
}
449
451
signalCompletion (mCancelRequested );
You can’t perform that action at this time.
0 commit comments