From 0e83c93ee61d30295acc7118d673044f4eb9d4dc Mon Sep 17 00:00:00 2001 From: Kevin Baron Date: Fri, 6 Nov 2015 13:05:05 +0100 Subject: [PATCH 2/3] Patch: dtninbox. Fixed malfunction of the argument --quiet. --- ibrdtn/tools/src/dtninbox.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ibrdtn/tools/src/dtninbox.cpp b/ibrdtn/tools/src/dtninbox.cpp index cc077a8..dd5f28d 100644 --- a/ibrdtn/tools/src/dtninbox.cpp +++ b/ibrdtn/tools/src/dtninbox.cpp @@ -98,6 +98,10 @@ void read_configuration(int argc, char** argv) case 'w': _conf_workdir = std::string(optarg); break; + // Added case 'q': + case 'q': + _conf_quiet = true; + break; default: abort(); break; -- 2.1.4