summaryrefslogtreecommitdiff
path: root/src/input/plugins/NfsInputPlugin.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2016-06-17 18:06:02 +0200
committerMax Kellermann <max@duempel.org>2016-06-17 18:06:02 +0200
commitbdd0c3686da403b0fcf3d673a81a9090e9ead0d6 (patch)
tree2ce51d40d8dd95d4ffa8faf7dc8a650ad38541ba /src/input/plugins/NfsInputPlugin.cxx
parent91769d536d6fb1cd81ae175d0397699e80ed5cec (diff)
input/async: use class HugeAllocation
Diffstat (limited to 'src/input/plugins/NfsInputPlugin.cxx')
-rw-r--r--src/input/plugins/NfsInputPlugin.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/input/plugins/NfsInputPlugin.cxx b/src/input/plugins/NfsInputPlugin.cxx
index 13d94831a..b6d4a204d 100644
--- a/src/input/plugins/NfsInputPlugin.cxx
+++ b/src/input/plugins/NfsInputPlugin.cxx
@@ -24,7 +24,6 @@
#include "lib/nfs/Domain.hxx"
#include "lib/nfs/Glue.hxx"
#include "lib/nfs/FileReader.hxx"
-#include "util/HugeAllocator.hxx"
#include "util/StringCompare.hxx"
#include "util/Error.hxx"
@@ -50,7 +49,6 @@ class NfsInputStream final : public AsyncInputStream, NfsFileReader {
public:
NfsInputStream(const char *_uri, Mutex &_mutex, Cond &_cond)
:AsyncInputStream(_uri, _mutex, _cond,
- HugeAllocate(NFS_MAX_BUFFERED),
NFS_MAX_BUFFERED,
NFS_RESUME_AT),
reconnect_on_resume(false), reconnecting(false) {}