summaryrefslogtreecommitdiffstats
path: root/tool/src/sq.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tool/src/sq.rs')
-rw-r--r--tool/src/sq.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tool/src/sq.rs b/tool/src/sq.rs
index 2d0b3411..43ffe726 100644
--- a/tool/src/sq.rs
+++ b/tool/src/sq.rs
@@ -26,7 +26,7 @@ use sequoia_core::{Context, NetworkPolicy};
use sequoia_net::KeyServer;
use sequoia_store::{Store, LogIter};
-mod cli;
+mod sq_cli;
mod commands;
fn open_or_stdin(f: Option<&str>) -> Result<Box<io::Read>, failure::Error> {
@@ -46,7 +46,7 @@ fn create_or_stdout(f: Option<&str>) -> Result<Box<io::Write>, failure::Error> {
}
fn real_main() -> Result<(), failure::Error> {
- let matches = cli::build().get_matches();
+ let matches = sq_cli::build().get_matches();
let policy = match matches.value_of("policy") {
None => NetworkPolicy::Encrypted,