From 840f8486ffedfb3c46de3a6eb32aa8aa0192a527 Mon Sep 17 00:00:00 2001 From: Arthur Britto Date: Sat, 7 Apr 2012 18:59:13 -0700 Subject: [PATCH] Add help for validation_create. --- src/main.cpp | 1 + src/rfc1751.cpp | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 59118ad107..71dba966a8 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -41,6 +41,7 @@ void printHelp() cout << " unl_list" << endl; cout << " unl_reset" << endl; cout << " unlock " << endl; + cout << " validation_create [||]" << endl; } int parseCommandline(int argc, char* argv[]) diff --git a/src/rfc1751.cpp b/src/rfc1751.cpp index 5e77332c08..5340e28b6d 100644 --- a/src/rfc1751.cpp +++ b/src/rfc1751.cpp @@ -431,8 +431,6 @@ static int etob(std::string& strData, std::vector vsHuman) // -2 if words are okay but parity is wrong. int eng2key(std::string& strKey, const std::string strHuman) { - using namespace boost::adaptors; - std::vector vWords; std::string strFirst, strSecond; int rc=0;