From 89846017ec9faa99f3f6241bc3b91015aab349f1 Mon Sep 17 00:00:00 2001 From: Dominic Reich Date: Sat, 18 Feb 2023 12:46:48 +0100 Subject: [PATCH] update help text --- blacklist.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/blacklist.cpp b/blacklist.cpp index 003f58c..60cf829 100644 --- a/blacklist.cpp +++ b/blacklist.cpp @@ -298,10 +298,10 @@ void printHelp(bool printAll) cout << "blacklist " << Version::VERSION_STRING << ", "; cout << Version::STATUS << endl; cout << Version::COPYRIGHT << endl; - cout << "Usage: blacklist [options] "; + cout << "Usage: blacklist [options] " << endl; if(printAll == true) { - cout << endl << endl; + cout << endl; cout << "The blacklist file is located at: " << DEFAULT_FILENAME << endl << endl; cout << "Options: -a add ip-address(es) (to file)" << endl; cout << " -d delete ip-address (from file) (still only 1!)" << endl; @@ -312,7 +312,7 @@ void printHelp(bool printAll) cout << " -C count ip-addresses (from file)" << endl; cout << " -CL count ip-addresses (from iptables)" << endl; cout << " -L list ip-addresses (from iptables)" << endl; - cout << " -F flush (iptables)"; + cout << " -F flush (iptables)" << endl; } }