Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Langley <agl@google.com>2015-01-27 03:34:37 +0300
committerAdam Langley <agl@google.com>2015-01-27 03:34:37 +0300
commitbed8f7307e88e0df62f863e1018681f373e0c6cd (patch)
treed0e86dc4d01975ec488fd0fcce047ee13cff557e /tool/digest.cc
parentcca4d5991f8319c967b3e3187e8a3a2cd162d702 (diff)
Fix build after mistake addressing comments in cca4d599.
My screwup—I didn't rebuild before submitting :( Change-Id: If3e1a5cc5bdf6cacb94bc23896619796b22bd9d2
Diffstat (limited to 'tool/digest.cc')
-rw-r--r--tool/digest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/digest.cc b/tool/digest.cc
index 93058ed5..224b79c7 100644
--- a/tool/digest.cc
+++ b/tool/digest.cc
@@ -355,7 +355,7 @@ static bool DigestSum(const EVP_MD *md,
break;
}
- if (arg[0] == "-") {
+ if (arg == "-") {
// "-" ends the argument list and indicates that stdin should be used.
sources.push_back(Source(Source::STDIN));
break;