From e737dd16c54dfd08ca15a89675e552641a5556b5 Mon Sep 17 00:00:00 2001 From: Arthur Britto Date: Sun, 2 Dec 2012 15:52:54 -0800 Subject: [PATCH] Do not output usage if --quiet. --- src/cpp/ripple/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpp/ripple/main.cpp b/src/cpp/ripple/main.cpp index 6449079d2..7089b2032 100644 --- a/src/cpp/ripple/main.cpp +++ b/src/cpp/ripple/main.cpp @@ -187,7 +187,7 @@ int main(int argc, char* argv[]) iResult = commandLineRPC(vCmd); } - if (1 == iResult) + if (1 == iResult && !vm.count("quiet")) printHelp(desc); return iResult;