Преглед изворни кода

Return -1 on error (needed by package managers).


git-svn-id: https://svn.microneil.com/svn/SNFUtility/trunk@36 aa37657e-1934-4a5f-aa6d-2d8eab27ff7c
master
adeniz пре 12 година
родитељ
комит
f17399da6e
1 измењених фајлова са 3 додато и 0 уклоњено
  1. 3
    0
      SNFMilterConfig/main.cpp

+ 3
- 0
SNFMilterConfig/main.cpp Прегледај датотеку

@@ -96,15 +96,18 @@ int main(int argc, char* argv[]) {
catch(exception& e) { // Report any normal exceptions.
cerr << "\n\nSNFMilterConfig Exception: " << e.what() << endl << endl;
RestoreFiles(&SnfMilterConfig);
return(-1);
}
catch (snfCFGmgr::LoadFailure) { // Error loading configuration file.
cerr << "\n\nsnfCFGmgr Exception: Unable to load the configuration file "
<< SnfMilterConfig.GetConfigFileName() << endl << endl;
RestoreFiles(&SnfMilterConfig);
return(-1);
}
catch(...) { // Report any unexpected exceptions.
cerr << "\n\nSNFMilterConfig Panic! Unknown Exception!" << endl << endl;
RestoreFiles(&SnfMilterConfig);
return(-1);
}
return 0; // Normally we return zero.

Loading…
Откажи
Сачувај