+-------------------------------------------------------------------
+Wed Feb 06 10:27:57 CET 2013 - aschnell@suse.de
+
+- fixed compatibility issue with boost 1.52
+
-------------------------------------------------------------------
Mon Feb 04 14:00:45 CET 2013 - aschnell@suse.de
Backgrounds::~Backgrounds()
{
thread.interrupt();
- thread.join();
+ if (thread.joinable())
+ thread.join();
}
Client::~Client()
{
thread.interrupt();
- thread.join();
+ if (thread.joinable())
+ thread.join();
for (list<Comparison*>::iterator it = comparisons.begin(); it != comparisons.end(); ++it)
{
<< "\t--debug, -d\t\t\tTurn on debugging." << endl
<< endl;
- exit (EXIT_SUCCESS);
+ exit(EXIT_SUCCESS);
}
help();
default:
- usage();
+ usage();
}
}
if (optind < argc)
{
- cerr << "snapperd: unrecognized option '" << argv[optind] << "'" << endl;
+ cerr << "snapperd: unrecognized option '" << argv[optind] << "'" << endl;
usage();
}