From f92c4a4f717283620018e52c16c0ac20ac222da7 Mon Sep 17 00:00:00 2001 From: Sebastian Messmer Date: Mon, 22 Feb 2016 15:52:41 +0100 Subject: [PATCH] Show a message when update checking is disabled --- src/cryfs/cli/Cli.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cryfs/cli/Cli.cpp b/src/cryfs/cli/Cli.cpp index 6ecf5bc1..e1ea622a 100644 --- a/src/cryfs/cli/Cli.cpp +++ b/src/cryfs/cli/Cli.cpp @@ -93,6 +93,8 @@ namespace cryfs { #endif if (!Environment::noUpdateCheck()) { _checkForUpdates(); + } else { + cout << "Automatic checking for security vulnerabilities and updates is disabled." << endl; } cout << endl; }