}
ssize_t len;
while ((len = ::read(in, buf, sizeof(buf))) > 0)
- ::write(out, buf, len);
+ static_cast<void>(::write(out, buf, len));
::close(in);
::close(out);
return true;
{
this->layout_ = layout;
+#ifdef ENABLE_PLUGINS
if (parameters->options().plugin_record())
{
this->recorder_ = new Plugin_recorder();
this->current_ != this->plugins_.end();
++this->current_)
(*this->current_)->load();
+#endif // ENABLE_PLUGINS
}
// Call the plugin claim-file handlers in turn to see if any claim the file.